ssearch history size: default to -1, not 0 (the latter disables history)

This commit is contained in:
Jean-Francois Dockes 2019-10-25 16:46:18 +02:00
parent a90c4bf698
commit 200d49045d

View File

@ -137,7 +137,7 @@ void rwSettings(bool writing)
SETTING_RW(prefs.ssearchAutoPhraseThreshPC,
"/Recoll/prefs/ssearchAutoPhraseThreshPC", Double, 2.0);
SETTING_RW(prefs.respagesize, "/Recoll/prefs/reslist/pagelen", Int, 8);
SETTING_RW(prefs.historysize, "/Recoll/prefs/historysize", Int, 0);
SETTING_RW(prefs.historysize, "/Recoll/prefs/historysize", Int, -1);
SETTING_RW(prefs.collapseDuplicates,
"/Recoll/prefs/reslist/collapseDuplicates", Bool, false);
SETTING_RW(prefs.showResultsAsTable,