I have a sheet that I am displaying using:
[NSApp beginSheet: theAddCameraPanel
modalForWindow: theWindow
modalDelegate: nil
didEndSelector: nil
contextInfo: nil];
The NSComboBoxes I have inside of the sheet are not displaying the text as the user types it. The display is only updated when the user clicks in the window. I have set [theAddCameraPanel setAutodisplay: YES] and even told the NSComboBoxes that they need displaying (as well as theAddCameraPanel) inside of the delegate functions called when the user types. What gives?
BTW, theAddCameraPanel is defined as a window--not a panel (not that it made a difference changing it). I do also have functions elsewhere that close the sheet and pull the values from it. Best I can tell so far, that stuff works.