From f1c3f6d98e030b178c848cc93220db10055ea91a Mon Sep 17 00:00:00 2001 From: sr55 Date: Sun, 6 Jan 2008 16:33:57 +0000 Subject: WinGui: - Fixed: for Auto-naming where it would incorrectly set directory when the user had no default set - Fixed: A few control's were not set to transparent so showed up incorrectly on themed windows machines. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1167 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/C#/Functions/Common.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'win/C#/Functions') diff --git a/win/C#/Functions/Common.cs b/win/C#/Functions/Common.cs index ee4c4ca44..b4b2070bb 100644 --- a/win/C#/Functions/Common.cs +++ b/win/C#/Functions/Common.cs @@ -82,7 +82,10 @@ namespace Handbrake.Functions { string filePath = ""; if (Properties.Settings.Default.autoNamePath.Trim() != "") - filePath = Properties.Settings.Default.autoNamePath + "\\"; + { + if (Properties.Settings.Default.autoNamePath.Trim() != "Click 'Browse' to set the default location") + filePath = Properties.Settings.Default.autoNamePath + "\\"; + } mainWindow.text_destination.Text = filePath + source + "_T" + title + "_C" + cs + dash + cf + ".mp4"; } else -- cgit v1.2.3