diff options
author | Victor Kareh <[email protected]> | 2019-10-08 12:47:46 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-10-19 22:19:11 +0200 |
commit | a6fe4f45de0c90b48f51ec459ef10c007eb9c49e (patch) | |
tree | d93a458e957b025d70b3f578cd6566a67f67049b | |
parent | 60b3235849bb37191f7fc11e7297bc431808c3bb (diff) | |
download | pluma-a6fe4f45de0c90b48f51ec459ef10c007eb9c49e.tar.bz2 pluma-a6fe4f45de0c90b48f51ec459ef10c007eb9c49e.tar.xz |
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.
-rw-r--r-- | pluma/pluma-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |