From ae344e17e55b77c982640f3a7f9ad4156681a1c7 Mon Sep 17 00:00:00 2001 From: sr55 Date: Sat, 10 Mar 2012 16:15:06 +0000 Subject: WinGui: (trunk) Fix an issue with Autonaming destination file with multi-dot extensions git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4502 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/CS/Functions/Main.cs | 1 - win/CS/frmMain.cs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/win/CS/Functions/Main.cs b/win/CS/Functions/Main.cs index 42b103498..709f43ae9 100644 --- a/win/CS/Functions/Main.cs +++ b/win/CS/Functions/Main.cs @@ -179,7 +179,6 @@ namespace Handbrake.Functions { // Get the Source Name and remove any invalid characters string sourceName = Path.GetInvalidFileNameChars().Aggregate(mainWindow.SourceName, (current, character) => current.Replace(character.ToString(), string.Empty)); - sourceName = Path.GetFileNameWithoutExtension(sourceName); // Remove Underscores if (UserSettingService.GetUserSetting(UserSettingConstants.AutoNameRemoveUnderscore)) diff --git a/win/CS/frmMain.cs b/win/CS/frmMain.cs index 475b42019..a142b5d76 100644 --- a/win/CS/frmMain.cs +++ b/win/CS/frmMain.cs @@ -98,7 +98,7 @@ namespace Handbrake if (selectedTitle != null && !string.IsNullOrEmpty(selectedTitle.SourceName)) { - return Path.GetFileName(selectedTitle.SourceName); + return Path.GetFileNameWithoutExtension(selectedTitle.SourceName); } // We have a drive, selected as a folder. -- cgit v1.2.3