From: Akos Polster Date: Sat, 18 Jun 2011 19:29:13 +0000 (+0200) Subject: Fix forward navigation control on Linux. X-Git-Url: http://vcs.maemo.org/git/?p=dorian;a=commitdiff_plain;h=43b8a9adfbf71b54c50d3b64f91e32635285add5 Fix forward navigation control on Linux. --- diff --git a/adopterwindow.cpp b/adopterwindow.cpp index 7ec642d..b60b61a 100644 --- a/adopterwindow.cpp +++ b/adopterwindow.cpp @@ -216,6 +216,10 @@ void AdopterWindow::placeDecorations() qDebug() << "Has the book view"; int extraHeight = 0; +#if defined(Q_WS_X11) && !defined(Q_WS_MAEMO_5) + extraHeight += toolBarHeight(); +#endif + QRect geo = bookView->geometry(); qDebug() << "bookView:" << geo; @@ -225,8 +229,10 @@ void AdopterWindow::placeDecorations() previousButton->setGeometry(geo.x(), geo.y() + geo.height() - TranslucentButton::pixels + extraHeight, TranslucentButton::pixels, TranslucentButton::pixels); - nextButton->setGeometry(geo.x() + geo.width() - TranslucentButton::pixels, - geo.y(), TranslucentButton::pixels, TranslucentButton::pixels); + nextButton->setGeometry( + geo.x() + geo.width() - TranslucentButton::pixels, + geo.y() + extraHeight, TranslucentButton::pixels, + TranslucentButton::pixels); progress->flash(); previousButton->flash(); nextButton->flash();