diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2011-03-09 08:49:13 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2011-03-09 08:49:13 +0800 |
commit | fde6cde5055683611da249c719894928a0a1c20d (patch) | |
tree | 919e35fbaae5441b942d13c87a4892e5bf53b093 /lib/egg | |
parent | 4408cb9c396ee85e031a18763e1f80c9c5550880 (diff) | |
download | gsoc2013-epiphany-fde6cde5055683611da249c719894928a0a1c20d.tar.gz gsoc2013-epiphany-fde6cde5055683611da249c719894928a0a1c20d.tar.zst gsoc2013-epiphany-fde6cde5055683611da249c719894928a0a1c20d.zip |
toolbar: fix a typo in last commit
Diffstat (limited to 'lib/egg')
-rw-r--r-- | lib/egg/egg-editable-toolbar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/egg/egg-editable-toolbar.c b/lib/egg/egg-editable-toolbar.c index c47dc9040..1a756fc75 100644 --- a/lib/egg/egg-editable-toolbar.c +++ b/lib/egg/egg-editable-toolbar.c @@ -991,8 +991,8 @@ toolbar_visibility_refresh (EggEditableToolbar *etoolbar) * or to that specified by the primary name, if any. */ if (!primary_class_set && visible && - (g_strcmp0 (priv->primary_name, toolbar_name) == 0) || - (priv->primary_name == NULL)) + ((g_strcmp0 (priv->primary_name, toolbar_name) == 0) || + (priv->primary_name == NULL))) { primary_class_set = TRUE; gtk_style_context_add_class (context, GTK_STYLE_CLASS_PRIMARY_TOOLBAR); |