Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

when calling view->show(); before setting setFixedSize... then the app Window is not created correctly (top bar missing) #4

Open
dsyleixa opened this issue Jul 6, 2023 · 0 comments

Comments

@dsyleixa
Copy link

dsyleixa commented Jul 6, 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)

// show the view
    //view->show();  // faulty
    view->setFixedSize(800,600);
    scene->setSceneRect(0,0,800,600);
    view->show();  // correct
@dsyleixa 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant