diff options
author | Weblate <noreply@weblate.org> | 2017-07-21 16:38:39 +0000 |
---|---|---|
committer | Weblate <noreply@weblate.org> | 2017-07-21 16:38:39 +0000 |
commit | 3df1486ca0c7ccd701386d0e5280650ce71aa773 (patch) | |
tree | 98080650bb7e680f28df520da61ae4e1463c1339 /src-qt5/core/libLumina/NativeWindow.cpp | |
parent | Translated using Weblate (Catalan) (diff) | |
parent | Merge branch 'master' of https://github.com/trueos/lumina (diff) | |
download | lumina-3df1486ca0c7ccd701386d0e5280650ce71aa773.tar.gz lumina-3df1486ca0c7ccd701386d0e5280650ce71aa773.tar.bz2 lumina-3df1486ca0c7ccd701386d0e5280650ce71aa773.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src-qt5/core/libLumina/NativeWindow.cpp')
-rw-r--r-- | src-qt5/core/libLumina/NativeWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core/libLumina/NativeWindow.cpp b/src-qt5/core/libLumina/NativeWindow.cpp index 94d39cb7..48d0380b 100644 --- a/src-qt5/core/libLumina/NativeWindow.cpp +++ b/src-qt5/core/libLumina/NativeWindow.cpp @@ -89,11 +89,11 @@ QRect NativeWindow::geometry(){ QRect geom( hash.value(NativeWindow::GlobalPos).toPoint(), hash.value(NativeWindow::Size).toSize() ); //Now adjust the window geom by the frame margins QList<int> frame = hash.value(NativeWindow::FrameExtents).value< QList<int> >(); //Left,Right,Top,Bottom - qDebug() << "Calculate Geometry:" << geom << frame; + //qDebug() << "Calculate Geometry:" << geom << frame; if(frame.length()==4){ geom = geom.adjusted( -frame[0], -frame[2], frame[1], frame[3] ); } - qDebug() << " - Total:" << geom; + //qDebug() << " - Total:" << geom; return geom; } // ==== PUBLIC SLOTS === |