mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-03 04:06:23 -04:00
stopping wallet rpc instance does not assume to close wallet
This commit is contained in:
parent
7ad2e20d95
commit
f17c5803b5
3 changed files with 17 additions and 9 deletions
|
@ -19,7 +19,7 @@ package bisq.desktop.components;
|
|||
|
||||
import de.jensd.fx.fontawesome.AwesomeDude;
|
||||
import de.jensd.fx.fontawesome.AwesomeIcon;
|
||||
|
||||
import bisq.common.UserThread;
|
||||
import com.jfoenix.controls.JFXTextField;
|
||||
|
||||
import javafx.scene.control.Label;
|
||||
|
@ -66,7 +66,9 @@ public class TextFieldWithIcon extends AnchorPane {
|
|||
}
|
||||
|
||||
public void setIcon(AwesomeIcon iconLabel) {
|
||||
AwesomeDude.setIcon(this.iconLabel, iconLabel);
|
||||
UserThread.execute(() -> {
|
||||
AwesomeDude.setIcon(this.iconLabel, iconLabel);
|
||||
});
|
||||
}
|
||||
|
||||
public void setText(String text) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue