Skip to content
This repository has been archived by the owner on Jan 1, 2024. It is now read-only.

Commit

Permalink
Changed display of rumble controls
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryochan7 committed Jan 29, 2020
1 parent d1479c7 commit 60983de
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions DS4Windows/DS4Forms/ProfileEditor.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -924,11 +924,18 @@
<StackPanel>
<GroupBox Header="{lex:Loc Rumble}" MinHeight="50" Margin="4,4,4,0" Padding="0,4,0,4">
<UniformGrid Rows="1" Columns="3">
<UniformGrid Columns="4" HorizontalAlignment="Left">
<xctk:IntegerUpDown x:Name="RumbleBoostIUD" d:IsHidden="True" Value="{Binding RumbleBoost}" Minimum="0" Maximum="200" Increment="10" />
<Label Content="%" />
<xctk:IntegerUpDown x:Name="RumbleAutostopTimeIUD" d:IsHidden="True" Value="{Binding RumbleAutostopTime}" Minimum="0" Maximum="3600" Increment="1" ToolTip="{lex:Loc RumbleMaxSecsTip}"/>
<Label Content="{lex:Loc RumbleMaxSecs}" />
<UniformGrid Columns="2" HorizontalAlignment="Left">
<DockPanel>
<Label Content="%" DockPanel.Dock="Right" />
<xctk:IntegerUpDown x:Name="RumbleBoostIUD" d:IsHidden="True" Value="{Binding RumbleBoost}" Minimum="0" Maximum="200" Increment="10"
MinWidth="50" DockPanel.Dock="Left" />
</DockPanel>

<DockPanel>
<Label Content="{lex:Loc RumbleMaxSecs}" DockPanel.Dock="Right" />
<xctk:IntegerUpDown x:Name="RumbleAutostopTimeIUD" d:IsHidden="True" Value="{Binding RumbleAutostopTime}" Minimum="0" Maximum="3600" Increment="1" ToolTip="{lex:Loc RumbleMaxSecsTip}"
MinWidth="50" DockPanel.Dock="Left"/>
</DockPanel>
</UniformGrid>

<Button x:Name="heavyRumbleTestBtn" Content="Test Heavy" Margin="10,0,0,0" Click="HeavyRumbleTestBtn_Click" />
Expand Down

0 comments on commit 60983de

Please sign in to comment.