From dbad9c1006e6e8ed78ce8d68d274d4177eb86dcb Mon Sep 17 00:00:00 2001 From: Victor Kareh Date: Tue, 8 Oct 2019 12:47:46 -0400 Subject: window: Do not override GdkWindowState When setting the custom pluma window state we override the class method, but never defer back to the parent class method. This means that window states like backdrop are never set on Pluma. --- pluma/pluma-window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pluma/pluma-window.c b/pluma/pluma-window.c index 718a507e..40d5f470 100644 --- a/pluma/pluma-window.c +++ b/pluma/pluma-window.c @@ -270,7 +270,7 @@ pluma_window_window_state_event (GtkWidget *widget, window->priv->window_state = event->new_window_state; - return FALSE; + return GTK_WIDGET_CLASS (pluma_window_parent_class)->window_state_event (widget, event); } static gboolean -- cgit v1.2.1