clientUI: show if the client is in safe mode in the window title

This commit is contained in:
Hydrox6
2022-01-17 16:56:17 +00:00
committed by Adam
parent 4410e173e3
commit 713f7950c2

View File

@@ -164,7 +164,7 @@ public class ClientUI
this.clientThreadProvider = clientThreadProvider;
this.eventBus = eventBus;
this.safeMode = safeMode;
this.title = title;
this.title = title + (safeMode ? " (safe mode)" : "");
}
@Subscribe