mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-17 19:02:32 -04:00
do not uppercase auto tooltip buttons
This commit is contained in:
parent
ea1933e043
commit
a7d0081999
1 changed files with 3 additions and 3 deletions
|
@ -31,15 +31,15 @@ public class AutoTooltipButton extends JFXButton {
|
|||
}
|
||||
|
||||
public AutoTooltipButton(String text) {
|
||||
super(text.toUpperCase());
|
||||
super(text);
|
||||
}
|
||||
|
||||
public AutoTooltipButton(String text, Node graphic) {
|
||||
super(text.toUpperCase(), graphic);
|
||||
super(text, graphic);
|
||||
}
|
||||
|
||||
public void updateText(String text) {
|
||||
setText(text.toUpperCase());
|
||||
setText(text);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue