Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
5.2.0
-
Mac OS 10.7 clang-64
-
-
6cbbd1f93d369059e16c62f4b8ba60ad3407d886
Description
This is regression from Qt 5.1.1 to Qt 5.2.0 on Mac. Run application below. Expand combobox and change application focus to other. Expanded combobox stays expanded and on top of all desktop applications.
main.cpp
#include <QApplication> #include <QComboBox> int main(int argc, char *argv[]) { QApplication a(argc, argv); QComboBox combobox; combobox.addItem("item1"); combobox.addItem("item2"); combobox.addItem("item3"); combobox.show(); return a.exec(); }
Attachments
Issue Links
- relates to
-
QTBUG-35959 Mac OS: QCompleter sticks on screen
- Closed
-
QTBUG-35820 Mac: Contextual menu not closed when switching application
- Closed