mirror of
https://github.com/boldsuck/haveno.git
synced 2025-01-09 17:49:24 +00:00
fix chat message npe resolving trade's second dispute
This commit is contained in:
parent
6f51d333ec
commit
dfaf39bab3
1 changed files with 3 additions and 1 deletions
|
@ -149,6 +149,8 @@ public class DisputeChatPopup {
|
||||||
|
|
||||||
// Delay display to next render frame to avoid that the popup is first quickly displayed in default position
|
// Delay display to next render frame to avoid that the popup is first quickly displayed in default position
|
||||||
// and after a short moment in the correct position
|
// and after a short moment in the correct position
|
||||||
UserThread.execute(() -> chatPopupStage.setOpacity(1));
|
UserThread.execute(() -> {
|
||||||
|
if (chatPopupStage != null) chatPopupStage.setOpacity(1);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue