Skip to content

Commit 8cdd41c

Browse files
authored
DesktopIntegration: Fix no emission of the running_applications_changed signal (#2324)
1 parent c2f6647 commit 8cdd41c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/DesktopIntegration.vala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ public class Gala.DesktopIntegration : GLib.Object {
2929
this.wm = wm;
3030
time_appeared_on_workspace = new GLib.HashTable<Meta.Window, int64?> (GLib.direct_hash, GLib.direct_equal);
3131

32-
wm.window_tracker.windows_changed.connect (() => windows_changed ());
32+
wm.window_tracker.windows_changed.connect (() => {
33+
running_applications_changed ();
34+
windows_changed ();
35+
});
3336

3437
unowned var display = wm.get_display ();
3538
unowned var workspace_manager = display.get_workspace_manager ();

0 commit comments

Comments
 (0)