From 379f323c5b9f06eba0535dac721043dcb5ea1d96 Mon Sep 17 00:00:00 2001
From: John Stebbins <jstebbins.hb@gmail.com>
Date: Fri, 29 Dec 2017 08:17:30 -0800
Subject: [PATCH] LinGui: fix display of volume name in queue

Fixes https://github.com/HandBrake/HandBrake/issues/1086
---
 gtk/src/queuehandler.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);
-- 
2.40.0