setWindowTitle in maximized mode.
Unsolved
General and Desktop
-
hello I cant set window title in maximized mode. but when I turn to normal mode, it shows.
when I press minimize button among those three buttons on top left in ubuntu.here's my code.
playback_main *pbw=new playback_main; pbw->setWindowTitle("PlayBack"); pbw->showMaximized();
-
Hi,
try
playback_main *pbw=new playback_main; pbw->setWindowTitle("PlayBack"); pbw->setWindowState(Qt::WindowMaximized);
If you try, when you maximize the window you will see the title, even if you minimize the window you will see the title.
-
it is working if you click the maximize button, and again click the maximize button .
-
hmm i see it is not working, need to work around .