aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-sidebar.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/e-shell-sidebar.c')
-rw-r--r--shell/e-shell-sidebar.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/e-shell-sidebar.c b/shell/e-shell-sidebar.c
index d869a2a63a..362321069a 100644
--- a/shell/e-shell-sidebar.c
+++ b/shell/e-shell-sidebar.c
@@ -594,6 +594,9 @@ e_shell_sidebar_set_icon_name (EShellSidebar *shell_sidebar,
{
g_return_if_fail (E_IS_SHELL_SIDEBAR (shell_sidebar));
+ if (g_strcmp0 (shell_sidebar->priv->icon_name, icon_name) == 0)
+ return;
+
g_free (shell_sidebar->priv->icon_name);
shell_sidebar->priv->icon_name = g_strdup (icon_name);
@@ -637,6 +640,9 @@ e_shell_sidebar_set_primary_text (EShellSidebar *shell_sidebar,
{
g_return_if_fail (E_IS_SHELL_SIDEBAR (shell_sidebar));
+ if (g_strcmp0 (shell_sidebar->priv->primary_text, primary_text) == 0)
+ return;
+
g_free (shell_sidebar->priv->primary_text);
shell_sidebar->priv->primary_text = e_utf8_ensure_valid (primary_text);
@@ -683,6 +689,9 @@ e_shell_sidebar_set_secondary_text (EShellSidebar *shell_sidebar,
{
g_return_if_fail (E_IS_SHELL_SIDEBAR (shell_sidebar));
+ if (g_strcmp0 (shell_sidebar->priv->secondary_text, secondary_text) == 0)
+ return;
+
g_free (shell_sidebar->priv->secondary_text);
shell_sidebar->priv->secondary_text = e_utf8_ensure_valid (secondary_text);