summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-04-28 17:33:04 +0000
committersr55 <[email protected]>2011-04-28 17:33:04 +0000
commit0756fdac438fd7c23df47de0c2b73e7ddffe0f42 (patch)
tree627ac56fd88725f4e73f2f95718fb42719366bbb /win
parent8b65e3d13fbc73d94b0a5b265da23579382c93bf (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.cs8
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;
+ }
}