forked from qt-creator/qt-creator
Debugger: Rework timeout handling
Extend the range to start with 10sec, but default to 40secs. Change-Id: Iede37afca0da2c9ba8fc0bb3fda65d403b8d0bcc Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
@@ -187,9 +187,9 @@ GdbSettings::GdbSettings()
|
||||
"calls and is very likely to destroy your debugging session.</p></body></html>"));
|
||||
|
||||
gdbWatchdogTimeout.setSettingsKey("WatchdogTimeout");
|
||||
gdbWatchdogTimeout.setDefaultValue(20);
|
||||
gdbWatchdogTimeout.setDefaultValue(40);
|
||||
gdbWatchdogTimeout.setSuffix(Tr::tr("sec"));
|
||||
gdbWatchdogTimeout.setRange(20, 1000000);
|
||||
gdbWatchdogTimeout.setRange(10, 1000000);
|
||||
gdbWatchdogTimeout.setLabelText(Tr::tr("GDB timeout:"));
|
||||
gdbWatchdogTimeout.setToolTip(Tr::tr(
|
||||
"The number of seconds before a non-responsive GDB process is terminated.\n"
|
||||
|
||||
Reference in New Issue
Block a user