Skip to content

Commit

Permalink
remove tooltip from Select All checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
molnard committed Dec 21, 2018
1 parent 428937f commit 73dfd5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WalletWasabi.Gui/Controls/WalletExplorer/CoinListView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<controls:SortingArrow Grid.Column="5" Text="History" SortDirection="{Binding HistorySortDirection}" />
</Grid>
<StackPanel Margin="0 10 0 0" Spacing="10" DockPanel.Dock="Bottom" Orientation="Horizontal">
<CheckBox Content = "Select All" IsThreeState="True" IsChecked = "{Binding SelectAllCheckBoxState}" Command="{Binding SelectAllCheckBoxCommand}" ToolTip.Tip="Select All" />
<CheckBox Content = "Select All" IsThreeState="True" IsChecked = "{Binding SelectAllCheckBoxState}" Command="{Binding SelectAllCheckBoxCommand}"/>
<CheckBox Content = "Select All Private" IsThreeState="True" IsChecked = "{Binding SelectPrivateCheckBoxState}" Command="{Binding SelectPrivateCheckBoxCommand}" ToolTip.Tip="Coins with anonymity set greater than 50." />
<CheckBox Content = "Select All Non-Private" IsThreeState="True" IsChecked = "{Binding SelectNonPrivateCheckBoxState}" Command="{Binding SelectNonPrivateCheckBoxCommand}" ToolTip.Tip="Coins with anonymity set less than 50." />
</StackPanel>
Expand Down

0 comments on commit 73dfd5d

Please sign in to comment.