Skip to content

Commit 5ad3135

Browse files
committed
Settings: Add default value for databrowser/rows_limit
The value is not visible in the Preferences dialog, but can be overwritten from the command line.
1 parent 68d6bd0 commit 5ad3135

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Settings.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,8 @@ QVariant Settings::getDefaultValue(const std::string& group, const std::string&
294294
return 10;
295295
if(name == "symbol_limit")
296296
return 5000;
297+
if (name == "rows_limit")
298+
return 10'000'000;
297299
if(name == "complete_threshold")
298300
return 1000;
299301
if(name == "image_preview")

0 commit comments

Comments
 (0)