You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi,
when calling
view->show();
before setting
...->setFixedSize...
then the app Window is not created correctly as the top window bar is missing or respectively out ouf screen (feat. maximize, minimize, close).
OTOH, when calling view->show(); as the last, all is fine.
(Platform: Raspberry Pi 3B, OS Stretch, Qt5 creator, Full-HD HDMI display)
// show the view
//view->show(); // faulty
view->setFixedSize(800,600);
scene->setSceneRect(0,0,800,600);
view->show(); // correct
The text was updated successfully, but these errors were encountered:
dsyleixa
changed the title
when calling view->show(); before setting setFixedSize... then the XWindow is not created correctly (top bar missing)
when calling view->show(); before setting setFixedSize... then the app Window is not created correctly (top bar missing)
Jul 18, 2023
hi,
when calling
view->show();
before setting
...->setFixedSize...
then the app Window is not created correctly as the top window bar is missing or respectively out ouf screen (feat. maximize, minimize, close).
OTOH, when calling view->show(); as the last, all is fine.
(Platform: Raspberry Pi 3B, OS Stretch, Qt5 creator, Full-HD HDMI display)
The text was updated successfully, but these errors were encountered: