diff options
author | hjk <hjk@qt.io> | 2021-07-02 16:09:32 +0200 |
---|---|---|
committer | hjk <hjk@qt.io> | 2021-07-05 05:31:05 +0000 |
commit | 579e643f715bbf0b1258cd9e4754862b1a47f7d4 (patch) | |
tree | 87dda6384e45e3cef642e05ebaf4d9bacb4bd525 /src/plugins/debugger/debuggeractions.cpp | |
parent | 3a503a7eb0429e057ecfe2023ef7424af75b9170 (diff) | |
download | qt-creator-579e643f715bbf0b1258cd9e4754862b1a47f7d4.tar.gz |
Debugger: Increase the default string display limit to 300
This helps especially with paths that often exceed 100 characters
nowadays.
Change-Id: I0a4cd62803178a129e8ced723e5422bf9eb21a08
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/debugger/debuggeractions.cpp')
-rw-r--r-- | src/plugins/debugger/debuggeractions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggeractions.cpp b/src/plugins/debugger/debuggeractions.cpp index 630eeb5504..bab0d00133 100644 --- a/src/plugins/debugger/debuggeractions.cpp +++ b/src/plugins/debugger/debuggeractions.cpp @@ -516,7 +516,7 @@ DebuggerSettings::DebuggerSettings() maximalStackDepth.setLabelText(tr("Maximum stack depth:")); displayStringLimit.setSettingsKey(debugModeGroup, "DisplayStringLimit"); - displayStringLimit.setDefaultValue(100); + displayStringLimit.setDefaultValue(300); displayStringLimit.setSpecialValueText(tr("<unlimited>")); displayStringLimit.setRange(20, 10000); displayStringLimit.setSingleStep(10); |