diff options
author | Xan Lopez <xan@gnome.org> | 2009-12-16 22:35:10 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-12-16 22:35:10 +0800 |
commit | 5b4ee4a896f8bc8507461db10b05ddae9b084047 (patch) | |
tree | fa00f2e18c13fc95ac6866dd6699f6140e1392a3 /src | |
parent | dcbca48831c592e33e0041f7fb6d458640983cea (diff) | |
download | gsoc2013-epiphany-5b4ee4a896f8bc8507461db10b05ddae9b084047.tar.gz gsoc2013-epiphany-5b4ee4a896f8bc8507461db10b05ddae9b084047.tar.zst gsoc2013-epiphany-5b4ee4a896f8bc8507461db10b05ddae9b084047.zip |
ephy-statusbar: fix GTK+ version check, it was reversed
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-statusbar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-statusbar.c b/src/ephy-statusbar.c index b60c72e73..dfcd85b2d 100644 --- a/src/ephy-statusbar.c +++ b/src/ephy-statusbar.c @@ -162,9 +162,9 @@ ephy_statusbar_init (EphyStatusbar *t) gtk_statusbar_set_has_resize_grip (gstatusbar, TRUE); #if GTK_CHECK_VERSION (2, 19, 1) - priv->hbox = gtk_hbox_new (FALSE, 4); -#else priv->hbox = gtk_statusbar_get_message_area (gstatusbar); +#else + priv->hbox = gtk_hbox_new (FALSE, 4); #endif priv->icon_container = gtk_hbox_new (FALSE, 4); gtk_box_pack_start (GTK_BOX (priv->hbox), priv->icon_container, |