Qt: showFullScreen() on a QWidget doesn't remove Mac OSX Menu Bar -


we our application full screen alright, osx menu bar still shown above it...

is there way around problem?

yes, might bug suggested. try framelesswindowhint, this:

#include <qtgui/qapplication> #include <qlabel>  int main(int argc, char *argv[]) {     qapplication a(argc, argv);      qlabel label("test!");     label.setwindowflags(qt::framelesswindowhint);     label.showfullscreen();      return a.exec(); } 

i tested on mac os x 10.7.1 (which not supported) , seems work.


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -