summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Model/SourceMenuItem.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2013-10-27 14:12:30 +0000
committersr55 <[email protected]>2013-10-27 14:12:30 +0000
commitf3d03356859bf82d58fc848eadc4a2a2f1ff2859 (patch)
treec4688711dd7412750a900d79071e80078a565ed6 /win/CS/HandBrakeWPF/Model/SourceMenuItem.cs
parent255c999cbaf884c29086e0a8f51d2dc4b351ee9b (diff)
WinGui: Couple of cosmetic fixes / minor improvements.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5856 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Model/SourceMenuItem.cs')
-rw-r--r--win/CS/HandBrakeWPF/Model/SourceMenuItem.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Model/SourceMenuItem.cs b/win/CS/HandBrakeWPF/Model/SourceMenuItem.cs
index 00cb2e28f..035b7353f 100644
--- a/win/CS/HandBrakeWPF/Model/SourceMenuItem.cs
+++ b/win/CS/HandBrakeWPF/Model/SourceMenuItem.cs
@@ -57,7 +57,7 @@ namespace HandBrakeWPF.Model
{
get
{
- return !this.IsOpenFolder && (this.Children == null || this.Children.Count == 0);
+ return !this.IsOpenFolder && !this.IsDrive && (this.Children == null || this.Children.Count == 0);
}
}