window: Add IS_ALIVE to get_property

This was causing looking glass to wrongly claim that is_alive = false
for all windows.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3367>
This commit is contained in:
Sebastian Keller 2023-11-07 01:02:55 +01:00 committed by Marge Bot
parent d978ab1890
commit 0807579cdd

View File

@ -431,6 +431,9 @@ meta_window_get_property(GObject *object,
case PROP_ON_ALL_WORKSPACES:
g_value_set_boolean (value, win->on_all_workspaces);
break;
case PROP_IS_ALIVE:
g_value_set_boolean (value, win->is_alive);
break;
case PROP_DISPLAY:
g_value_set_object (value, win->display);
break;