diff options
Diffstat (limited to 'src/ephy-tab.c')
-rw-r--r-- | src/ephy-tab.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 8e5b4605a..e0455a194 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -71,7 +71,7 @@ struct EphyTabPrivate int total_requests; int width; int height; - GtkRadioAction *action; + GtkToggleAction *action; float zoom; EmbedSecurityLevel security_level; TabNavigationFlags nav_flags; @@ -1010,9 +1010,10 @@ ephy_tab_init (EphyTab *tab) id = g_strdup_printf ("Tab%lu", tab_id++); - tab->priv->action = g_object_new (GTK_TYPE_RADIO_ACTION, + tab->priv->action = g_object_new (GTK_TYPE_TOGGLE_ACTION, "name", id, "label", _("Blank page"), + "draw_as_radio", TRUE, NULL); g_free (id); |