aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-29 12:13:12 -0400
committerKen Moore <ken@ixsystems.com>2017-06-29 12:13:12 -0400
commit9a8aa1fdf09be158a35737c3331ca1e08d844993 (patch)
tree7f8c5bc818c0d38c814298b54fc36a002b5b5a71
parentFix the bitwise operations for the resize XCB operation (diff)
downloadlumina-9a8aa1fdf09be158a35737c3331ca1e08d844993.tar.gz
lumina-9a8aa1fdf09be158a35737c3331ca1e08d844993.tar.bz2
lumina-9a8aa1fdf09be158a35737c3331ca1e08d844993.zip
Quick change to some debugging
-rw-r--r--src-qt5/core/libLumina/RootSubWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/libLumina/RootSubWindow.cpp b/src-qt5/core/libLumina/RootSubWindow.cpp
index 190ec3aa..568c5dee 100644
--- a/src-qt5/core/libLumina/RootSubWindow.cpp
+++ b/src-qt5/core/libLumina/RootSubWindow.cpp
@@ -265,7 +265,7 @@ void RootSubWindow::propertiesChanged(QList<NativeWindow::Property> props, QList
otherB->setIcon(vals[i].value<QIcon>());
break;
case NativeWindow::GlobalPos:
- qDebug() << "Got Global Pos:" << vals[i].toPoint();
+ qDebug() << "Got Global Pos:" << WIN->geometry().topLeft() << vals[i].toPoint();
this->move( WIN->geometry().topLeft() );
break;
case NativeWindow::Size:
bgstack15