summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-03-11 19:18:19 +0000
committersr55 <[email protected]>2010-03-11 19:18:19 +0000
commit0f3e3351b62bb9e275c61f9ed24a13ccc3c66f85 (patch)
treebdb45ac002e4ba1c6fce8f5081892e32adcae032
parentb3c45776b387ebdb4d61b9f24bb03c5c967c1629 (diff)
WinGui:
- Fix the DVD Drive Option on the source menu. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3160 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--win/C#/frmMain.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index e4f6c05be..07f8f4bc5 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -1915,7 +1915,7 @@ namespace Handbrake
return;
}
- this.dvdDrivePath = drives[0].RootDirectory + "VIDEO_TS";
+ this.dvdDrivePath = drives[0].RootDirectory;
this.dvdDriveLabel = drives[0].VolumeLabel;
mnu_dvd_drive.Text = this.dvdDrivePath + " (" + this.dvdDriveLabel + ")";
}