From 3fe74d130543156e3cbf8905e60ae1e84911be85 Mon Sep 17 00:00:00 2001 From: Niki Roo Date: Fri, 1 May 2020 23:26:14 +0200 Subject: [PATCH] hide some UI settings by default --- bundles/UiConfig.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bundles/UiConfig.java b/bundles/UiConfig.java index 11b3a87..0f3142d 100644 --- a/bundles/UiConfig.java +++ b/bundles/UiConfig.java @@ -35,16 +35,16 @@ public enum UiConfig { // GUI settings (hidden in config) // @Meta(description = "Show the side panel by default",// - format = Format.BOOLEAN, def = "true") + hidden = true, format = Format.BOOLEAN, def = "true") SHOW_SIDE_PANEL, // @Meta(description = "Show the details panel by default",// - format = Format.BOOLEAN, def = "true") + hidden = true, format = Format.BOOLEAN, def = "true") SHOW_DETAILS_PANEL, // @Meta(description = "Show thumbnails by default in the books view",// - format = Format.BOOLEAN, def = "false") + hidden = true, format = Format.BOOLEAN, def = "false") SHOW_THUMBNAILS, // @Meta(description = "Show a words/images count instead of the author by default in the books view",// - format = Format.BOOLEAN, def = "false") + hidden = true, format = Format.BOOLEAN, def = "false") SHOW_WORDCOUNT, // // // Deprecated -- 2.27.0