diff options
author | Ken Moore <ken@ixsystems.com> | 2017-06-29 22:31:49 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-06-29 22:31:49 -0400 |
commit | 3cc4bb91529afd0a3454a3db86a7d8a7f51fde96 (patch) | |
tree | e6a724d3b495bfc62a1b1e677883d02c21906a7e /src-qt5/core/libLumina/RootWindow.cpp | |
parent | Back out that secondary close ID - unrelated to the actual window that was cl... (diff) | |
download | lumina-3cc4bb91529afd0a3454a3db86a7d8a7f51fde96.tar.gz lumina-3cc4bb91529afd0a3454a3db86a7d8a7f51fde96.tar.bz2 lumina-3cc4bb91529afd0a3454a3db86a7d8a7f51fde96.zip |
Commit another large block of work on Lumina2.
1. Starting to get the compositing put together, but not functional yet.
2. Get the window close routines completely finished, with memory being freed properly on close.
3. Get some of the "reset" of window properties after an animation all setup. Not quite finished yet.
Diffstat (limited to 'src-qt5/core/libLumina/RootWindow.cpp')
-rw-r--r-- | src-qt5/core/libLumina/RootWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/libLumina/RootWindow.cpp b/src-qt5/core/libLumina/RootWindow.cpp index 17a9ecd7..2fee5d96 100644 --- a/src-qt5/core/libLumina/RootWindow.cpp +++ b/src-qt5/core/libLumina/RootWindow.cpp @@ -184,7 +184,7 @@ void RootWindow::NewWindow(NativeWindow *win){ void RootWindow::CloseWindow(WId win){ for(int i=0; i<WINDOWS.length(); i++){ - if(WINDOWS[i]->id() == win){ WINDOWS.takeAt(i)->clientClosed(); break; } + if(WINDOWS[i]->id() == win){ qDebug() << "Remove Window From Root List"; WINDOWS.takeAt(i)->clientClosed(); break; } } } |