diff options
Diffstat (limited to 'win/CS/HandBrakeWPF/Controls/SourceSelection.xaml')
-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 -->
|