Skip to content

Commit

Permalink
add auto select behavior to MinInputCount textbox (WalletWasabi#13274)
Browse files Browse the repository at this point in the history
to match behavior of other settings items
  • Loading branch information
MarnixCroes authored Jul 17, 2024
1 parent 37cacd3 commit 5101541
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@

<StackPanel ToolTip.Tip="The client will refuse to participate in rounds with a minimum input count lower than the value indicated here.">
<TextBlock Text="Min Input Count" />
<TextBox Classes="standalone" Name="AbsoluteMinInputCountTextBox" Text="{Binding AbsoluteMinInputCount}"/>
<TextBox Classes="standalone" Name="AbsoluteMinInputCountTextBox" Text="{Binding AbsoluteMinInputCount}">
<Interaction.Behaviors>
<TextBoxAutoSelectTextBehavior />
</Interaction.Behaviors>
</TextBox>
</StackPanel>
</StackPanel>
</UserControl>

0 comments on commit 5101541

Please sign in to comment.