How to get Qt application to display on the entire screen RPI
Unsolved
General and Desktop
-
Hello all,
I have a Qt application that needs to be full screen, as in it displays over everything in the RPI OS. I have my menu screens to be equal to the full RPI display (480x700). However, the toolbar still appears.
Does anyone know of any tricks to force my application to draw over top the RPI OS toolbar?
Best
-
If you set your window or widget to
fullscreen
, it should overlap everything else.Use
w.showFullscreen();
instead of
w.show();
in your
main.cpp