From 4aceee71c5cfd321926186b2bc0fdda3335587ef Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 19 Nov 2015 18:08:30 -0500 Subject: [PATCH] stack switcher: Notify consistently Whether to notify a property change should not depend on whether the switcher is associated with a stack or not. --- gtk/gtkstackswitcher.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk/gtkstackswitcher.c b/gtk/gtkstackswitcher.c index de46f8c6b2..e8f3b9b004 100644 --- a/gtk/gtkstackswitcher.c +++ b/gtk/gtkstackswitcher.c @@ -474,8 +474,9 @@ gtk_stack_switcher_set_icon_size (GtkStackSwitcher *switcher, { clear_switcher (switcher); populate_switcher (switcher); - g_object_notify (G_OBJECT (switcher), "icon-size"); } + + g_object_notify (G_OBJECT (switcher), "icon-size"); } }