From af4c3ad030d6015da72fbfb4b19a10fa3f69909c Mon Sep 17 00:00:00 2001 From: Lordmau5 Date: Sun, 24 Feb 2019 01:24:16 +0100 Subject: [PATCH] UI: Fix wrong filename building for Remux dialog --- UI/window-remux.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/window-remux.cpp b/UI/window-remux.cpp index 31bf5a590..ed6650019 100644 --- a/UI/window-remux.cpp +++ b/UI/window-remux.cpp @@ -482,7 +482,7 @@ void RemuxQueueModel::checkInputPath(int row) if (entry.state == RemuxEntryState::Ready) entry.targetPath = fileInfo.path() + QDir::separator() - + fileInfo.baseName() + ".mp4"; + + fileInfo.completeBaseName() + ".mp4"; } if (entry.state == RemuxEntryState::Ready && isProcessing)