diff options
author | Ken Moore <ken@ixsystems.com> | 2017-07-20 12:40:16 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-07-20 12:40:16 -0400 |
commit | 23b870f04c46e8fa6d4ca2b14eb6d9ea2285a4c0 (patch) | |
tree | 2c8a5443b880b7261838d264e3db386bfc7a5fd3 /src-qt5/core/libLumina/NativeWindow.cpp | |
parent | Get the compositing working much smoother now. (diff) | |
download | lumina-23b870f04c46e8fa6d4ca2b14eb6d9ea2285a4c0.tar.gz lumina-23b870f04c46e8fa6d4ca2b14eb6d9ea2285a4c0.tar.bz2 lumina-23b870f04c46e8fa6d4ca2b14eb6d9ea2285a4c0.zip |
Add a window animation framework, with 7 visibility animations for starters.
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 === |