feat: add an option to hide redundant timestamps

This commit is contained in:
Anna
2022-02-18 13:47:31 -05:00
parent 04783fcf02
commit 048826baed
5 changed files with 32 additions and 1 deletions
+1
View File
@@ -59,6 +59,7 @@ internal sealed class Display : ISettingsTab {
if (this.Mutable.PrettierTimestamps) {
ImGui.TreePush();
ImGuiUtil.OptionCheckbox(ref this.Mutable.MoreCompactPretty, Language.Options_MoreCompactPretty_Name, Language.Options_MoreCompactPretty_Description);
ImGuiUtil.OptionCheckbox(ref this.Mutable.HideSameTimestamps, Language.Options_HideSameTimestamps_Name, Language.Options_HideSameTimestamps_Description);
ImGui.TreePop();
}