Comboboxes are drawn wrong.
-
I use next code for display qml:
@ QQuickView *view = new QQuickView(qml->getPath());
QWidget *widget = QWidget::createWindowContainer(view);
widget->setMinimumSize(100, 100);
widget->setMaximumSize(1000, 1000);
widget->setFocusPolicy(Qt::TabFocus);
widget->show();@This qml contains comboboxes and they are drawn wrong, it looks like Qt draw popup list from screen coordinates, not from widget's; they are moved from their right positions.