Skip to content

Commit add6a5c

Browse files
committed
webhelper: Fix internal browser-auto-reload menu item state
This doesn't change anything though, as currently WebKit doesn't actually use that value, and neither do we.
1 parent aa946db commit add6a5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webhelper/src/gwh-plugin.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ on_item_auto_reload_toggled (GAction *action,
246246
g_object_set (G_OBJECT (G_settings), "browser-auto-reload",
247247
!browser_auto_reload, NULL);
248248
g_simple_action_set_state (G_SIMPLE_ACTION (action),
249-
g_variant_new_boolean (browser_auto_reload));
249+
g_variant_new_boolean (!browser_auto_reload));
250250
}
251251

252252
static void

0 commit comments

Comments
 (0)