diff options
author | sr55 <[email protected]> | 2018-11-17 18:15:17 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2018-11-17 18:15:17 +0000 |
commit | a11513ce6b75ea10e05e6cd5c8cf07a29a08d305 (patch) | |
tree | 121b009ede9c5229d87b23350ae0b5975b8d6cfe /win/CS/HandBrakeWPF/Controls | |
parent | b3b42991ebcaa3502df3ebd6e2e2cdee005de7e9 (diff) |
Few Minor UI Tweaks to better handle localised content.
Diffstat (limited to 'win/CS/HandBrakeWPF/Controls')
-rw-r--r-- | win/CS/HandBrakeWPF/Controls/SourceSelection.xaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml b/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml index 3bb09aed7..5563c9e7a 100644 --- a/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml +++ b/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml @@ -44,14 +44,14 @@ <!-- Title Specific Scan -->
<StackPanel Grid.Row="1" Orientation="Vertical" HorizontalAlignment="Left" Margin="20,15,0,0">
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{x:Static Properties:Resources.SourceSelection_ChooseSpecificTitle}" />
+ <WrapPanel Orientation="Horizontal">
+ <TextBlock Text="{x:Static Properties:Resources.SourceSelection_ChooseSpecificTitle}" TextWrapping="Wrap" />
<controls:NumberBox Width="60" Height="24" Margin="10,0,0,0" ToolTip="{x:Static Properties:ResourcesTooltips.SourceSelection_TitleSpecific}"
Minimum="0" Maximum="5000" Number="{Binding TitleSpecificScan, Mode=TwoWay}" />
- </StackPanel>
+ </WrapPanel>
- <TextBlock Text="{x:Static Properties:Resources.SourceSelection_ChooseVideo}" Margin="0,10,0,0" />
+ <TextBlock Text="{x:Static Properties:Resources.SourceSelection_ChooseVideo}" Margin="0,10,0,0" TextWrapping="Wrap" />
</StackPanel>
<!-- Source Types -->
|