| 295 | } |
| 296 | |
| 297 | void MainWindow::setDebugDisasmBoldSymbols(bool state) { |
| 298 | ui->checkDisasmBoldSymbols->setChecked(state); |
| 299 | m_config->setValue(SETTING_DEBUGGER_BOLD_SYMBOLS, state); |
| 300 | disasm.bold_sym = state; |
| 301 | if (guiDebug) { |
| 302 | disasmUpdate(); |
| 303 | } |
| 304 | } |
| 305 | |
| 306 | void MainWindow::setDockGroupDrag(bool state) { |
| 307 | ui->checkAllowGroupDrag->setChecked(state); |
nothing calls this directly
no outgoing calls
no test coverage detected