- fix: Size of the icons in problem and problem set panel are not correct.
This commit is contained in:
parent
0862c0555e
commit
a86e872281
1
NEWS.md
1
NEWS.md
|
@ -137,6 +137,7 @@ Red Panda C++ Version 2.27
|
|||
- enhancement: Auto hide Edit/Selection/Code/Refactor menu if no file openning.
|
||||
- enhancement: Auto hide Project menu if no project openning.
|
||||
- fix: Toggle breakpoint by shortcut may use wrong line.
|
||||
- fix: Size of the icons in problem and problem set panel are not correct.
|
||||
|
||||
Red Panda C++ Version 2.26
|
||||
- enhancement: Code suggestion for embedded std::vectors.
|
||||
|
|
|
@ -1985,6 +1985,12 @@ void MainWindow::updateActionIcons()
|
|||
for (QToolButton* btn: ui->panelFiles->findChildren<QToolButton *>()) {
|
||||
btn->setIconSize(iconSize);
|
||||
}
|
||||
for (QToolButton* btn: ui->tabProblemSet->findChildren<QToolButton *>()) {
|
||||
btn->setIconSize(iconSize);
|
||||
}
|
||||
for (QToolButton* btn: ui->panelProblemCaseInfo->findChildren<QToolButton *>()) {
|
||||
btn->setIconSize(iconSize);
|
||||
}
|
||||
|
||||
ui->tabExplorer->setIconSize(iconSize);
|
||||
ui->tabMessages->setIconSize(iconSize);
|
||||
|
|
Loading…
Reference in New Issue