improve responsiveness of extra info input by reinvoking main thread

This commit is contained in:
woodser 2025-04-12 10:20:25 -04:00
parent 145c642305
commit 569d088d21
No known key found for this signature in database
GPG Key ID: 55A10DD48ADEE5EF

View File

@ -503,7 +503,7 @@ public abstract class MutableOfferViewModel<M extends MutableOfferDataModel> ext
extraInfoStringListener = (ov, oldValue, newValue) -> {
if (newValue != null) {
extraInfo.set(newValue);
onExtraInfoTextAreaChanged();
UserThread.execute(() -> onExtraInfoTextAreaChanged());
}
};