diff options
author | sr55 <[email protected]> | 2019-01-25 21:08:39 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2019-01-27 20:46:41 +0000 |
commit | 7f76264f5be0ba32fccf4f1ca200e346e3a31a11 (patch) | |
tree | 18fcd3fde3fa8063e13cfe36661f5a61a6a0704d /win/CS/HandBrakeWPF/Controls | |
parent | 95c21515907b14f2845c5e060ebc9d6a4023b5df (diff) |
WinGui: Move the Queue Recovery option from the source panel to the Queue Menu. It's not something that's frequently used and doesn't really belong on the Source Menu. Makes the source menu less cluttered.
Diffstat (limited to 'win/CS/HandBrakeWPF/Controls')
-rw-r--r-- | win/CS/HandBrakeWPF/Controls/SourceSelection.xaml | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml b/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml index f3cecdbe3..0e4925748 100644 --- a/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml +++ b/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml @@ -108,18 +108,6 @@ </ListBox.ItemTemplate>
</ListBox>
- <Button Grid.Row="5" AutomationProperties.Name="{x:Static Properties:Resources.SourceSelection_QueueArchiveRecovery}" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"
- cal:Message.Attach="[Event Click] = [Action RecoverQueue]" Visibility="{Binding QueueRecoveryArchivesExist, Converter={StaticResource BooleanToVisibilityConverter}}"
- Margin="20,15,0,0" Padding="8" HorizontalAlignment="Left" BorderBrush="DarkGray" BorderThickness="0,1,0,0">
- <StackPanel Orientation="Horizontal" MinWidth="100">
- <Image Source="../Views/Images/Queue.png" Width="32" />
- <StackPanel Orientation="Vertical">
- <TextBlock Text="{x:Static Properties:Resources.SourceSelection_QueueArchiveRecovery}" VerticalAlignment="Center" Margin="5,0,0,0" />
- <TextBlock Text="{x:Static Properties:Resources.SourceSelection_QueueArchiveRecoveryDesc}" VerticalAlignment="Center" Margin="5,0,0,0" />
- </StackPanel>
- </StackPanel>
- </Button>
-
<!-- Cancel Window -->
<StackPanel Grid.Row="7" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,10,2,10">
<Button cal:Message.Attach="[Event Click] = [Action CloseSourceSelection]" Content="Cancel" Padding="8,2" />
|