diff options
author | John Stebbins <[email protected]> | 2019-06-27 11:57:06 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-06-27 11:57:06 -0700 |
commit | 19ba0208c2ac34ddaffed61af3ffecdc87d77576 (patch) | |
tree | c3e3f74589e3e1cb6b7aea345a8b576ef2db70d1 /gtk/src/main.c | |
parent | b0a88a4221c2e698847987b28a15fb8d5d6a5dcf (diff) |
LinGui: add options to open encode log and log directory
... To the "Actions" menu button on the queue window
Diffstat (limited to 'gtk/src/main.c')
-rw-r--r-- | gtk/src/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gtk/src/main.c b/gtk/src/main.c index 3df99f574..c407edfe6 100644 --- a/gtk/src/main.c +++ b/gtk/src/main.c @@ -828,6 +828,10 @@ queue_open_source_action_cb(GSimpleAction *action, GVariant *param, gpointer ud) G_MODULE_EXPORT void queue_open_dest_action_cb(GSimpleAction *action, GVariant *param, gpointer ud); G_MODULE_EXPORT void +queue_open_log_dir_action_cb(GSimpleAction *action, GVariant *param, gpointer ud); +G_MODULE_EXPORT void +queue_open_log_action_cb(GSimpleAction *action, GVariant *param, gpointer ud); +G_MODULE_EXPORT void queue_delete_all_action_cb(GSimpleAction *action, GVariant *param, gpointer ud); G_MODULE_EXPORT void @@ -895,6 +899,8 @@ static void map_actions(GApplication * app, signal_user_data_t * ud) { "queue-pause", queue_pause_action_cb }, { "queue-open-source", queue_open_source_action_cb }, { "queue-open-dest", queue_open_dest_action_cb }, + { "queue-open-log-dir", queue_open_log_dir_action_cb }, + { "queue-open-log", queue_open_log_action_cb }, { "queue-reset-fail", queue_reset_fail_action_cb }, { "queue-reset-all", queue_reset_all_action_cb }, { "queue-reset", queue_reset_action_cb }, |