diff options
author | sr55 <[email protected]> | 2008-01-06 16:33:57 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-01-06 16:33:57 +0000 |
commit | f1c3f6d98e030b178c848cc93220db10055ea91a (patch) | |
tree | d63ae0f4019115925092123bff65df017c2a0785 /win/C#/Functions | |
parent | b4194f6f8a974f8037fb65e9ed41ae31db8761c7 (diff) |
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
Diffstat (limited to 'win/C#/Functions')
-rw-r--r-- | win/C#/Functions/Common.cs | 5 |
1 files changed, 4 insertions, 1 deletions
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
|