mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-09 07:02:24 -04:00
improve responsiveness of extra info input by reinvoking main thread
This commit is contained in:
parent
145c642305
commit
569d088d21
1 changed files with 1 additions and 1 deletions
|
@ -503,7 +503,7 @@ public abstract class MutableOfferViewModel<M extends MutableOfferDataModel> ext
|
||||||
extraInfoStringListener = (ov, oldValue, newValue) -> {
|
extraInfoStringListener = (ov, oldValue, newValue) -> {
|
||||||
if (newValue != null) {
|
if (newValue != null) {
|
||||||
extraInfo.set(newValue);
|
extraInfo.set(newValue);
|
||||||
onExtraInfoTextAreaChanged();
|
UserThread.execute(() -> onExtraInfoTextAreaChanged());
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue