- fix: "Timeout for problem case" can't be rechecked, in the Settings Dialog -> executor -> problem set panel.
This commit is contained in:
parent
17eb0c1f94
commit
2f8988cf91
1
NEWS.md
1
NEWS.md
|
@ -9,6 +9,7 @@ Red Panda C++ Version 1.1.5
|
|||
- change: add Selection menu
|
||||
- enhancement: add memory view rows/columns settings in the settings dialog -> debugger -> general panel
|
||||
- enhancement: add "Go to Line..." in the Code menu
|
||||
- fix: "Timeout for problem case" can't be rechecked, in the Settings Dialog -> executor -> problem set panel.
|
||||
|
||||
Red Panda C++ Version 1.1.4
|
||||
|
||||
|
|
|
@ -41,7 +41,8 @@ void ExecutorProblemSetWidget::doLoad()
|
|||
ui->cbFont->setCurrentFont(QFont(pSettings->executor().caseEditorFontName()));
|
||||
ui->spinFontSize->setValue(pSettings->executor().caseEditorFontSize());
|
||||
ui->chkOnlyMonospaced->setChecked(pSettings->executor().caseEditorFontOnlyMonospaced());
|
||||
ui->grpEnableTimeout->setEnabled(pSettings->executor().enableCaseTimeout());
|
||||
ui->grpEnableTimeout->setChecked(pSettings->executor().enableCaseTimeout());
|
||||
|
||||
ui->spinCaseTimeout->setValue(pSettings->executor().caseTimeout());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue