mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
followup
This commit is contained in:
parent
e1d9d54da3
commit
540424a2e3
1 changed files with 13 additions and 15 deletions
|
@ -24,25 +24,23 @@ public class CopyableCoinLabel extends CopyableLabel {
|
||||||
this("Unknown");
|
this("Unknown");
|
||||||
}
|
}
|
||||||
|
|
||||||
private final EventHandler<MouseEvent> toggleBitcoinUnit = event -> {
|
|
||||||
if(bitcoinUnit == null) {
|
|
||||||
bitcoinUnit = Config.get().getBitcoinUnit();
|
|
||||||
}
|
|
||||||
|
|
||||||
if(bitcoinUnit == BitcoinUnit.SATOSHIS) {
|
|
||||||
bitcoinUnit = BitcoinUnit.BTC;
|
|
||||||
} else {
|
|
||||||
bitcoinUnit = BitcoinUnit.SATOSHIS;
|
|
||||||
}
|
|
||||||
|
|
||||||
refresh(Config.get().getUnitFormat(), bitcoinUnit);
|
|
||||||
};
|
|
||||||
|
|
||||||
public CopyableCoinLabel(String text) {
|
public CopyableCoinLabel(String text) {
|
||||||
super(text);
|
super(text);
|
||||||
valueProperty().addListener((observable, oldValue, newValue) -> setValueAsText((Long)newValue, Config.get().getUnitFormat(), Config.get().getBitcoinUnit()));
|
valueProperty().addListener((observable, oldValue, newValue) -> setValueAsText((Long)newValue, Config.get().getUnitFormat(), Config.get().getBitcoinUnit()));
|
||||||
|
|
||||||
setOnMouseClicked(toggleBitcoinUnit);
|
setOnMouseClicked(event -> {
|
||||||
|
if(bitcoinUnit == null) {
|
||||||
|
bitcoinUnit = Config.get().getBitcoinUnit();
|
||||||
|
}
|
||||||
|
|
||||||
|
if(bitcoinUnit == BitcoinUnit.SATOSHIS) {
|
||||||
|
bitcoinUnit = BitcoinUnit.BTC;
|
||||||
|
} else {
|
||||||
|
bitcoinUnit = BitcoinUnit.SATOSHIS;
|
||||||
|
}
|
||||||
|
|
||||||
|
refresh(Config.get().getUnitFormat(), bitcoinUnit);
|
||||||
|
});
|
||||||
|
|
||||||
tooltip = new Tooltip();
|
tooltip = new Tooltip();
|
||||||
contextMenu = new CoinContextMenu();
|
contextMenu = new CoinContextMenu();
|
||||||
|
|
Loading…
Reference in a new issue