diff options
author | sr55 <[email protected]> | 2016-12-20 21:55:34 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2016-12-20 21:55:41 +0000 |
commit | c95e4571af35aa633b54f55cfe7bf23b26266bb9 (patch) | |
tree | 12b15ee756cdf06101fdd5081b57f5bd31528eb4 /win/CS/HandBrakeWPF/Controls | |
parent | 8f60ff0a123fc8ddfecd5600e4fef08b3948ad82 (diff) |
WinGui: Improve many tooltips for 1.0 #426
Diffstat (limited to 'win/CS/HandBrakeWPF/Controls')
-rw-r--r-- | win/CS/HandBrakeWPF/Controls/SourceSelection.xaml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml b/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml index b719957e6..3722724e0 100644 --- a/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml +++ b/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml @@ -3,7 +3,8 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:cal="http://www.caliburnproject.org"
xmlns:controls="clr-namespace:HandBrakeWPF.Controls"
- xmlns:Properties="clr-namespace:HandBrakeWPF.Properties" x:Name="sourcePanel">
+ xmlns:Properties="clr-namespace:HandBrakeWPF.Properties" x:Name="sourcePanel"
+ >
<Grid Height="{Binding ElementName=sourcePanel, Path=ActualHeight}">
@@ -39,7 +40,7 @@ <StackPanel Orientation="Horizontal">
<TextBlock Text="{x:Static Properties:ResourcesUI.SourceSelection_ChooseSpecificTitle}" />
- <controls:NumberBox Width="60" Height="24" Margin="10,0,0,0"
+ <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>
|