aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-28 17:18:57 -0400
committerKen Moore <ken@ixsystems.com>2017-06-28 17:18:57 -0400
commit431e837ead4e8fd7f7aef6b7d198dac50156c2b2 (patch)
tree330da47111e0a97be6df9ec77d7293327c7c8d0a /src-qt5/core/lumina-desktop-unified
parentWork on making a new NativeWindow property "RelatedWindows" which is a specia... (diff)
downloadlumina-431e837ead4e8fd7f7aef6b7d198dac50156c2b2.tar.gz
lumina-431e837ead4e8fd7f7aef6b7d198dac50156c2b2.tar.bz2
lumina-431e837ead4e8fd7f7aef6b7d198dac50156c2b2.zip
Get a lot more of the Lumina2 window-management functionality working.
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified')
-rw-r--r--src-qt5/core/lumina-desktop-unified/LSession.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/LSession.cpp b/src-qt5/core/lumina-desktop-unified/LSession.cpp
index ab117df0..27c6dd8d 100644
--- a/src-qt5/core/lumina-desktop-unified/LSession.cpp
+++ b/src-qt5/core/lumina-desktop-unified/LSession.cpp
@@ -241,6 +241,7 @@ void LSession::setupGlobalConnections(){
connect(Lumina::NEF, SIGNAL(WindowCreated(WId)), Lumina::NWS, SLOT(NewWindowDetected(WId)));
connect(Lumina::NEF, SIGNAL(WindowDestroyed(WId)), Lumina::NWS, SLOT(WindowCloseDetected(WId)));
connect(Lumina::NEF, SIGNAL(WindowPropertyChanged(WId, NativeWindow::Property)), Lumina::NWS, SLOT(WindowPropertyChanged(WId, NativeWindow::Property)));
+ connect(Lumina::NEF, SIGNAL(WindowPropertyChanged(WId, NativeWindow::Property, QVariant)), Lumina::NWS, SLOT(WindowPropertyChanged(WId, NativeWindow::Property, QVariant)));
connect(Lumina::NEF, SIGNAL(TrayWindowCreated(WId)), Lumina::NWS, SLOT(NewTrayWindowDetected(WId)));
connect(Lumina::NEF, SIGNAL(TrayWindowDestroyed(WId)), Lumina::NWS, SLOT(WindowCloseDetected(WId)));
connect(Lumina::NEF, SIGNAL(PossibleDamageEvent(WId)), Lumina::NWS, SLOT(CheckDamageID(WId)));
bgstack15