diff options
-rw-r--r-- | includes/shell.h | 2 | ||||
-rw-r--r-- | shell/callbacks.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/includes/shell.h b/includes/shell.h index 223326fb..4c615ee1 100644 --- a/includes/shell.h +++ b/includes/shell.h @@ -181,7 +181,7 @@ struct _ShellFieldUpdateSource { }; void shell_init(GSList *modules); -void shell_do_reload(void); +void shell_do_reload(gboolean reload); Shell *shell_get_main_shell(); diff --git a/shell/callbacks.c b/shell/callbacks.c index 1d151b9c..a251e804 100644 --- a/shell/callbacks.c +++ b/shell/callbacks.c @@ -255,7 +255,7 @@ void cb_report_bug() void cb_refresh() { - shell_do_reload(); + shell_do_reload(TRUE); } void cb_copy_to_clipboard() |