aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-06-13 21:36:02 +0200
committerdec05eba <dec05eba@protonmail.com>2023-06-13 21:36:02 +0200
commit613016a48d9b10fb81f5bc54b0bdd463c39f5283 (patch)
tree1c909df3dca6e4551b2da37965c9f94c706d484b /include
parent3554a838c2318863f59ad4b50a17edc19b5cb94a (diff)
Add option to disable file manager grid view to make midov stop crying
Diffstat (limited to 'include')
-rw-r--r--include/Config.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Config.hpp b/include/Config.hpp
index 5bbeaff..df79da2 100644
--- a/include/Config.hpp
+++ b/include/Config.hpp
@@ -80,6 +80,10 @@ namespace QuickMedia {
bool allow_hentai = false;
};
+ struct FileManager {
+ bool grid_view = true;
+ };
+
struct Config {
Config() = default;
Config(const Config&) = delete;
@@ -98,6 +102,7 @@ namespace QuickMedia {
DownloadConfig download;
FontConfig font;
MangadexConfig mangadex;
+ FileManager file_manager;
bool use_system_fonts = false;
bool use_system_mpv_config = false;
bool enable_shaders = true;