thanks to bubu @ qtforum.org
If you need to use all available screen, then you must look up in qmenu.cpp source file in 1273 line where is:
QRect screen = QApplication::desktop()->availableGeometry(p);Change it to:QRect screen = QApplication::desktop()->screenGeometry(p);then it works like you need
Yes, it does!