diff options
author | sr55 <[email protected]> | 2011-04-28 17:33:04 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-04-28 17:33:04 +0000 |
commit | 0756fdac438fd7c23df47de0c2b73e7ddffe0f42 (patch) | |
tree | 627ac56fd88725f4e73f2f95718fb42719366bbb /win | |
parent | 8b65e3d13fbc73d94b0a5b265da23579382c93bf (diff) |
WinGui:
Fix a small issue with the last checkin. Folder was created but item was not added to the queue after. Forgot to remove a return statement.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3965 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r-- | win/CS/frmMain.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/win/CS/frmMain.cs b/win/CS/frmMain.cs index 5c82fd2c9..10815d564 100644 --- a/win/CS/frmMain.cs +++ b/win/CS/frmMain.cs @@ -1129,14 +1129,16 @@ namespace Handbrake {
Directory.CreateDirectory(path);
}
- }
+ }
else
{
return false;
}
}
-
- return false;
+ else
+ {
+ return false;
+ }
}
|