diff options
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/CountdownAlertView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/CountdownAlertView.xaml | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/win/CS/HandBrakeWPF/Views/CountdownAlertView.xaml b/win/CS/HandBrakeWPF/Views/CountdownAlertView.xaml index 103735c63..b063f85ba 100644 --- a/win/CS/HandBrakeWPF/Views/CountdownAlertView.xaml +++ b/win/CS/HandBrakeWPF/Views/CountdownAlertView.xaml @@ -10,19 +10,8 @@ <RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
- <StackPanel Grid.Row="0"
- Height="40"
- Margin="0,0,0,10"
- Orientation="Horizontal">
- <Image Width="24"
- Height="24"
- Margin="10,0,5,0"
- VerticalAlignment="Center"
- Source="../Views/Images/Advanced.png" />
- <StackPanel VerticalAlignment="Center" Orientation="Vertical">
- <TextBlock FontWeight="Bold" Text="When Done Action" />
- </StackPanel>
- </StackPanel>
+
+ <TextBlock Text="When Done Action" FontSize="26" FontFamily="Segoe UI Light" FontWeight="Bold" Margin="10,10,10,10" Grid.Row="0" />
<TextBlock Text="{Binding NoticeMessage}" Grid.Row="1" Margin="40,0,10,0"/>
|