Merge branch 'dev' into multi-external-editor

This commit is contained in:
Lawrence Lee
2023-01-02 15:06:33 -08:00
53 changed files with 1268 additions and 199 deletions

View File

@@ -465,6 +465,17 @@ public:
size_t maxRecentFolders; // max. number of recent folders stored in options file
std::vector<Glib::ustring> recentFolders; // List containing all recent folders
enum SortMethod {
SORT_BY_NAME,
SORT_BY_DATE,
SORT_BY_EXIF,
SORT_BY_RANK,
SORT_BY_LABEL,
SORT_METHOD_COUNT,
};
SortMethod sortMethod; // remembers current state of file browser
bool sortDescending;
Options ();