feat: allow hiding

This commit is contained in:
Anna
2022-02-01 00:20:20 -05:00
parent 326ef5430c
commit 60e22f58ee
5 changed files with 81 additions and 4 deletions
+2 -1
View File
@@ -12,7 +12,8 @@ internal sealed class Display : ISettingsTab {
}
public void Draw() {
ImGui.Checkbox("Hide chat", ref this.Mutable.HideChat);
ImGui.Checkbox("Hide vanilla chat", ref this.Mutable.HideChat);
ImGui.Checkbox("Hide chat during cutscenes", ref this.Mutable.HideDuringCutscenes);
ImGui.Checkbox("Show native item tooltips", ref this.Mutable.NativeItemTooltips);
ImGui.Checkbox("Show tabs in a sidebar", ref this.Mutable.SidebarTabView);
ImGui.Checkbox("Use modern timestamp layout", ref this.Mutable.PrettierTimestamps);