qt5: implement QNitpickerPlatformWindow::raise

This function is needed to bring menus on top.
This commit is contained in:
Norman Feske 2014-06-03 16:53:43 +02:00
parent b46d062918
commit 867a7018e8
1 changed files with 3 additions and 2 deletions

View File

@ -345,8 +345,9 @@ void QNitpickerPlatformWindow::setWindowIcon(const QIcon &icon)
void QNitpickerPlatformWindow::raise()
{
if (qnpw_verbose)
qDebug() << "QNitpickerPlatformWindow::raise()";
/* bring the view to the top */
Nitpicker::View_client(_view_cap).stack(Nitpicker::View_capability(),
true, false);
QPlatformWindow::raise();
}