remember show panels/thumbs mode
authorNiki Roo <niki@nikiroo.be>
Fri, 1 May 2020 21:09:49 +0000 (23:09 +0200)
committerNiki Roo <niki@nikiroo.be>
Fri, 1 May 2020 21:09:49 +0000 (23:09 +0200)
bundles/UiConfig.java

index dd7bbc7032b4a1b2dfc4b9e29991fd131aeeafad..37d4f0b7d53c7d542783e7d00737c5c1b0975f96 100644 (file)
@@ -31,7 +31,23 @@ public enum UiConfig {
        @Meta(description = "The external viewer for non-images documents (or empty to use the system default program for the given file type)",//
        format = Format.STRING)
        NON_IMAGES_DOCUMENT_READER, //
+       //
+       // GUI settings (hidden in config)
+       //
+       @Meta(description = "Show the side panel by default",//
+       format = Format.BOOLEAN, def = "true")
+       SHOW_SIDE_PANEL, //
+       @Meta(description = "Show the details panel by default",//
+       format = Format.BOOLEAN, def = "true")
+       SHOW_DETAILS_PANEL, //
+       @Meta(description = "Show thumbnails by default in the books view",//
+       format = Format.BOOLEAN, def = "false")
+       SHOW_THUMBNAILS, //
+       //
+       // Deprecated
+       //
        @Meta(description = "The background colour of the library if you don't like the default system one",//
        hidden = true, format = Format.COLOR)
+       @Deprecated
        BACKGROUND_COLOR, //
 }