Skip to content

Commit

Permalink
Mouse scroll tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
hawku committed Dec 15, 2018
1 parent 073ec9b commit 2d29df0
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions TabletDriverGUI/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -456,15 +456,27 @@


<!-- Scroll -->
<GroupBox Grid.Row="1" Header="Scroll">
<GroupBox Grid.Row="1" Header="Mouse Scroll">
<GroupBox.ToolTip>
<StackPanel>
<TextBlock FontWeight="Bold" FontSize="16">
Mouse Scroll
</TextBlock>
<TextBlock>
- Use negative number in sensitivity to invert the direction.
<LineBreak/>
- Acceleration 1.0 = No acceleration. Recommended range is from 1 to 5.
</TextBlock>
</StackPanel>
</GroupBox.ToolTip>
<StackPanel Orientation="Vertical" HorizontalAlignment="Center">

<!-- Scroll sensitivity -->
<GroupBox Header="Sensitivity" Height="50" Width="120" HorizontalAlignment="Left">
<Grid>
<TextBox Name="textScrollSensitivity" Padding="4,0,0,0"
HorizontalContentAlignment="Left" VerticalContentAlignment="Center"
TextChanged="TextChanged">1.0</TextBox>
TextChanged="TextChanged">0.5</TextBox>
<Label HorizontalAlignment="Right">s/mm</Label>
</Grid>
</GroupBox>
Expand Down

0 comments on commit 2d29df0

Please sign in to comment.