mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-05-18 18:51:26 +00:00
make the list synchronized
This commit is contained in:
@@ -134,7 +134,7 @@ public abstract class CommonsModule {
|
||||
@Provides
|
||||
@Singleton
|
||||
static ObservableList<Event> provideAppEventQueue() {
|
||||
return FXCollections.observableArrayList();
|
||||
return FXCollections.synchronizedObservableList(FXCollections.observableArrayList());
|
||||
}
|
||||
|
||||
private static void handleUncaughtExceptionInBackgroundThread(Thread thread, Throwable throwable) {
|
||||
|
||||
Reference in New Issue
Block a user