using Caliburn.Micro;\r
\r
using HandBrake.Interop.Interop;\r
+ using HandBrake.Interop.Utilities;\r
\r
using HandBrakeWPF.Commands;\r
using HandBrakeWPF.Commands.Menu;\r
/// </summary>\r
public void OpenQueueWindow()\r
{\r
- bool showQueueInline = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.ShowQueueInline);\r
- bool showNewQueue = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.ShowExperimentalQueue); ;\r
+ bool showQueueInline = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.ShowQueueInline) && VersionHelper.IsNightly();\r
+ bool showNewQueue = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.ShowExperimentalQueue) && VersionHelper.IsNightly();\r
\r
this.QueueViewModel.IsNewQueueVisible = showNewQueue;\r
this.QueueViewModel.IsInline = showQueueInline;\r
</StackPanel>\r
</StackPanel>\r
\r
- <StackPanel Orientation="Vertical" Margin="0,0,0,20">\r
+ <StackPanel Orientation="Vertical" Margin="0,0,0,20" Visibility="{Binding IsNightly, Converter={StaticResource boolToVisConverter}}">\r
\r
<TextBlock Text="{x:Static Properties:Resources.Options_Experimental}" FontSize="14" Margin="0,0,0,10"/>\r
\r