You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Move getMaxMessageId off EDT in MessageBrowser.runSearch
getMaxMessageId is a blocking HTTP call that was executed on the Swing
EDT, freezing the UI while waiting for the server response. Moved it
into SwingWorker.doInBackground(); all subsequent UI updates run in
done() back on the EDT.
Signed-off-by: Nico Piel <nico.piel@hotmail.de>
0 commit comments