From a6fe4f45de0c90b48f51ec459ef10c007eb9c49e 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 eaa7540b..ddf09e5a 100644 --- a/pluma/pluma-window.c +++ b/pluma/pluma-window.c @@ -266,7 +266,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