diff options
-rw-r--r-- | embed/ephy-embed-prefs.h | 1 | ||||
-rw-r--r-- | src/ephy-window.c | 4 | ||||
-rw-r--r-- | src/window-commands.c | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/embed/ephy-embed-prefs.h b/embed/ephy-embed-prefs.h index 680ea8cf2..7fd07951e 100644 --- a/embed/ephy-embed-prefs.h +++ b/embed/ephy-embed-prefs.h @@ -36,7 +36,6 @@ #define CONF_SECURITY_COOKIES_ACCEPT "/apps/epiphany/web/cookie_accept" #define CONF_LANGUAGE_AUTODETECT_ENCODING "/apps/epiphany/web/autodetect_encoding" #define CONF_LANGUAGE_DEFAULT_ENCODING "/apps/epiphany/web/default_encoding" -#define CONF_BROWSE_WITH_CARET "/apps/epiphany/web/browse_with_caret" #define CONF_IMAGE_ANIMATION_MODE "/apps/epiphany/web/image_animation" #define CONF_IMAGE_LOADING_MODE "/apps/epiphany/web/image_loading" #define CONF_DISPLAY_SMOOTHSCROLL "/apps/epiphany/web/smooth_scroll" diff --git a/src/ephy-window.c b/src/ephy-window.c index 64275a463..7cef32739 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -3520,7 +3520,7 @@ browse_with_caret_notifier (GConfClient *client, GtkAction *action; gboolean enabled; - enabled = eel_gconf_get_boolean (CONF_BROWSE_WITH_CARET); + enabled = eel_gconf_get_boolean (CONF_CARET_BROWSING_ENABLED); action = gtk_action_group_get_action (window->priv->action_group, "BrowseWithCaret"); gtk_toggle_action_set_active (GTK_TOGGLE_ACTION (action), enabled); @@ -3789,7 +3789,7 @@ ephy_window_constructor (GType type, /* other notifiers */ browse_with_caret_notifier (NULL, 0, NULL, window); priv->browse_with_caret_notifier_id = eel_gconf_notification_add - (CONF_BROWSE_WITH_CARET, + (CONF_CARET_BROWSING_ENABLED, (GConfClientNotifyFunc)browse_with_caret_notifier, window); priv->allow_popups_notifier_id = eel_gconf_notification_add diff --git a/src/window-commands.c b/src/window-commands.c index eb39dc618..6494ea2c5 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -1028,5 +1028,5 @@ window_cmd_browse_with_caret (GtkAction *action, gboolean active; active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)); - eel_gconf_set_boolean (CONF_BROWSE_WITH_CARET, active); + eel_gconf_set_boolean (CONF_CARET_BROWSING_ENABLED, active); } |