From e298ebf8d53811d331770526b8c3625e881f7ca5 Mon Sep 17 00:00:00 2001 From: Daniel Klaffenbach Date: Wed, 3 Nov 2010 23:53:52 +0100 Subject: [PATCH] Make use of autoRotate setting in main application --- src/mainwindow.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 8149779..8ea4a24 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -58,7 +58,7 @@ MainWindow::MainWindow(QWidget *parent) : init(); refresh(); - // enable auto rotation + // setup auto rotation setAutoRotation(); //initialize orientation @@ -74,7 +74,6 @@ MainWindow::MainWindow(QWidget *parent) : helpWindow.setWindowFlags( windowFlags() | Qt::Window ); //Settings widget - //settings.setWindowFlags(Qt::Popup); settings.hide(); //connect signals and slots @@ -452,12 +451,12 @@ void MainWindow::orientationChanged() /** - * Enables the auto-rotation feature of Maemo5 devices + * Enables or disables the auto-rotation feature of Maemo5 devices. */ void MainWindow::setAutoRotation() { #if defined(Q_WS_MAEMO_5) - setAttribute(Qt::WA_Maemo5AutoOrientation, true); + setAttribute(Qt::WA_Maemo5AutoOrientation, settings.useAutoRotate()); #endif } -- 1.7.9.5