diff options
author | John Stebbins <[email protected]> | 2017-12-29 08:17:30 -0800 |
---|---|---|
committer | John Stebbins <[email protected]> | 2017-12-29 08:17:30 -0800 |
commit | 379f323c5b9f06eba0535dac721043dcb5ea1d96 (patch) | |
tree | 9751fa55e1b272d5e31779e27e772cb277702bbd /gtk | |
parent | 6f97eb5dd68fe3d9160ae7503893b4cffc0b0927 (diff) |
LinGui: fix display of volume name in queue
Fixes https://github.com/HandBrake/HandBrake/issues/1086
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/src/queuehandler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/src/queuehandler.c b/gtk/src/queuehandler.c index 5778ee486..f7cc4ea43 100644 --- a/gtk/src/queuehandler.c +++ b/gtk/src/queuehandler.c @@ -205,7 +205,7 @@ add_to_queue_list(signal_user_data_t *ud, GhbValue *queueDict, GtkTreeIter *pite title = ghb_dict_get_int(uiDict, "title"); start_point = ghb_dict_get_int(uiDict, "start_point"); end_point = ghb_dict_get_int(uiDict, "end_point"); - vol_name = ghb_dict_get_string(uiDict, "volume_label"); + vol_name = ghb_dict_get_string(uiDict, "volume"); dest = ghb_dict_get_string(uiDict, "destination"); basename = g_path_get_basename(dest); escape = g_markup_escape_text(basename, -1); |