[gtk+/wip/baedert/drawing: 59/147] frame: Fix copy&paste bug in shadow-type handling
- From: Timm Bäder <baedert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/baedert/drawing: 59/147] frame: Fix copy&paste bug in shadow-type handling
- Date: Thu, 18 May 2017 11:02:23 +0000 (UTC)
commit f29dbf46bc6cf3179ca2c3a27ca7173a738bd84c
Author: Timm Bäder <mail baedert org>
Date: Fri May 5 11:51:06 2017 +0200
frame: Fix copy&paste bug in shadow-type handling
If the given shadow_type is none NONE, we have to remove the .flat style
class of course, not add it.
gtk/gtkframe.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gtk/gtkframe.c b/gtk/gtkframe.c
index 28c12a5..2779900 100644
--- a/gtk/gtkframe.c
+++ b/gtk/gtkframe.c
@@ -586,8 +586,8 @@ gtk_frame_set_shadow_type (GtkFrame *frame,
gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET (frame)),
GTK_STYLE_CLASS_FLAT);
else
- gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET (frame)),
- GTK_STYLE_CLASS_FLAT);
+ gtk_style_context_remove_class (gtk_widget_get_style_context (GTK_WIDGET (frame)),
+ GTK_STYLE_CLASS_FLAT);
g_object_notify_by_pspec (G_OBJECT (frame), frame_props[PROP_SHADOW_TYPE]);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]