diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-10-19 20:50:40 -0400 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-23 22:45:30 +0100 |
commit | eedb1ce0ea23b8e01f1dfe28d501d18fe0179006 (patch) | |
tree | 47f9e910385125d8c24bdf45639fe1d29aa5b21c /core/pref.h | |
parent | 2caaf8889bc43acada947223d72bd20f3dc297b3 (diff) | |
download | subsurface-eedb1ce0ea23b8e01f1dfe28d501d18fe0179006.tar.gz |
Mobile/filtering: add two preferences for filtering
With this we can make it configurable if the search should include the notes field
and if the search should be case sensitive or not.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/pref.h')
-rw-r--r-- | core/pref.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/pref.h b/core/pref.h index 2e283fc3a..9662b1a57 100644 --- a/core/pref.h +++ b/core/pref.h @@ -126,6 +126,8 @@ struct preferences { int o2consumption; // ml per min int pscr_ratio; // dump ratio times 1000 bool use_default_file; + bool filterFullTextNotes; // mobile only - include notes information in full text searh + bool filterCaseSensitive; // mobile only - make fltering case sensitive // ********** Geocoding ********** geocoding_prefs_t geocoding; |