summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Kareh <[email protected]>2019-10-08 12:47:46 -0400
committermonsta <[email protected]>2020-02-13 14:04:14 +0300
commitdbad9c1006e6e8ed78ce8d68d274d4177eb86dcb (patch)
tree8bbfb4ec95de3a61940c9299339b088b31008fef
parent615ecfdd401c70bdf9faaf3e3125f793d76476bf (diff)
downloadpluma-dbad9c1006e6e8ed78ce8d68d274d4177eb86dcb.tar.bz2
pluma-dbad9c1006e6e8ed78ce8d68d274d4177eb86dcb.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.c2
1 files changed, 1 insertions, 1 deletions
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