aboutsummaryrefslogtreecommitdiff
path: root/src-qt5
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-27 10:48:21 -0400
committerKen Moore <ken@ixsystems.com>2017-06-27 10:48:21 -0400
commit42ccfd08274e4ebb8a8b8a22ec329bcf5abb6684 (patch)
treeef95b3d71cfc2821e26ed46d34f5bbb507f827ba /src-qt5
parentStart working on the RootSubWindow interactions. (diff)
downloadlumina-42ccfd08274e4ebb8a8b8a22ec329bcf5abb6684.tar.gz
lumina-42ccfd08274e4ebb8a8b8a22ec329bcf5abb6684.tar.bz2
lumina-42ccfd08274e4ebb8a8b8a22ec329bcf5abb6684.zip
Another couple minor changes - trying to track down some missing events.
Diffstat (limited to 'src-qt5')
-rw-r--r--src-qt5/core/libLumina/NativeWindowSystem.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src-qt5/core/libLumina/NativeWindowSystem.h b/src-qt5/core/libLumina/NativeWindowSystem.h
index eb01a460..631b8cb2 100644
--- a/src-qt5/core/libLumina/NativeWindowSystem.h
+++ b/src-qt5/core/libLumina/NativeWindowSystem.h
@@ -23,7 +23,9 @@ private:
//Simplifications to find an already-created window object
NativeWindow* findWindow(WId id){
+ qDebug() << "Find Window:" << id;
for(int i=0; i<NWindows.length(); i++){
+ qDebug() << " -- Check Window:" << NWindows[i]->id();
if(id==NWindows[i]->id()){ return NWindows[i]; }
}
return 0;
bgstack15