Removed old sync thread, implemented chat reading

This commit is contained in:
2020-02-01 10:20:06 +01:00
parent c62d7a8812
commit 8e449d150b
6 changed files with 37 additions and 74 deletions

View File

@ -153,7 +153,7 @@ public class Startup {
.getItems()
.get("onCloseMode")
.setChangeHandler((onCloseMode) -> chatWindow
.setDefaultCloseOperation((boolean) onCloseMode ? JFrame.HIDE_ON_CLOSE : JFrame.EXIT_ON_CLOSE));
.setDefaultCloseOperation((Boolean) onCloseMode ? JFrame.HIDE_ON_CLOSE : JFrame.EXIT_ON_CLOSE));
} catch (EnvoyException e) {
logger.warning("The StatusTrayIcon is not supported on this platform!");
}