Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--shell/model/homemodel.py16
2 files changed, 10 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index bdb0bc8..90f84b8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+* #2026 Fix the active flag when there are multiple toplevels. (marco)
* Fixed some issues with text objects in the clipboard. (tomeu)
Snapshot a1f5cece18
diff --git a/shell/model/homemodel.py b/shell/model/homemodel.py
index 54378ec..1455009 100644
--- a/shell/model/homemodel.py
+++ b/shell/model/homemodel.py
@@ -184,15 +184,17 @@ class HomeModel(gobject.GObject):
def _active_window_changed_cb(self, screen):
window = screen.get_active_window()
- if window is None or window.get_window_type() != wnck.WINDOW_NORMAL:
+ if window is None:
return
- xid = window.get_xid()
- act = self._get_activity_by_xid(xid)
- if act is None:
- logging.error('Model for window %d does not exist.' % xid)
- self._set_pending_activity(act)
- self._set_active_activity(act)
+ if window.get_window_type() != wnck.WINDOW_DIALOG:
+ while window.get_transient() is not None:
+ window = window.get_transient()
+
+ activity = self._get_activity_by_xid(window.get_xid())
+ if activity is not None:
+ self._set_pending_activity(activity)
+ self._set_active_activity(activity)
def _add_activity(self, home_activity):
self._activities.append(home_activity)