diff options
author | John Stebbins <[email protected]> | 2017-09-18 12:15:51 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2017-11-06 08:19:49 -0800 |
commit | 20251e585da99e360ba46669e64a9dc68f8ae469 (patch) | |
tree | db734e9e5415b3a99c4de2a8f9431cf619583199 /gtk/src/main.c | |
parent | 0baa7b56120d29820c1d3f0b95f73bfb7663ac8e (diff) |
LinGui: preset "Reset" -> "Reload"
Diffstat (limited to 'gtk/src/main.c')
-rw-r--r-- | gtk/src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/src/main.c b/gtk/src/main.c index bcfdbed91..aacb72d5c 100644 --- a/gtk/src/main.c +++ b/gtk/src/main.c @@ -875,7 +875,7 @@ guide_action_cb(GSimpleAction *action, GVariant *param, gpointer ud); G_MODULE_EXPORT void preset_select_action_cb(GSimpleAction *action, GVariant *param, gpointer ud); G_MODULE_EXPORT void -preset_reset_action_cb(GSimpleAction *action, GVariant *param, gpointer ud); +preset_reload_action_cb(GSimpleAction *action, GVariant *param, gpointer ud); static void map_actions(GApplication * app, signal_user_data_t * ud) { @@ -911,7 +911,7 @@ static void map_actions(GApplication * app, signal_user_data_t * ud) { "about", about_action_cb }, { "guide", guide_action_cb }, { "preset-select", preset_select_action_cb, "s" }, - { "preset-reset", preset_reset_action_cb, }, + { "preset-reload", preset_reload_action_cb, }, }; g_action_map_add_action_entries(G_ACTION_MAP(app), entries, G_N_ELEMENTS(entries), ud); |