mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-19 19:58:28 -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) {
|
public AutoTooltipButton(String text) {
|
||||||
super(text.toUpperCase());
|
super(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
public AutoTooltipButton(String text, Node graphic) {
|
public AutoTooltipButton(String text, Node graphic) {
|
||||||
super(text.toUpperCase(), graphic);
|
super(text, graphic);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void updateText(String text) {
|
public void updateText(String text) {
|
||||||
setText(text.toUpperCase());
|
setText(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue