|
|
|
|
@ -544,10 +544,10 @@ void DebuggerWindow::createModels()
|
|
|
|
|
|
|
|
|
|
// set default column width in code view
|
|
|
|
|
m_ui.codeView->setColumnWidth(0, 40);
|
|
|
|
|
m_ui.codeView->setColumnWidth(1, 80);
|
|
|
|
|
m_ui.codeView->setColumnWidth(2, 80);
|
|
|
|
|
m_ui.codeView->setColumnWidth(1, 100);
|
|
|
|
|
m_ui.codeView->setColumnWidth(2, 90);
|
|
|
|
|
m_ui.codeView->setColumnWidth(3, 250);
|
|
|
|
|
m_ui.codeView->setColumnWidth(4, m_ui.codeView->width() - (40 + 80 + 80 + 250));
|
|
|
|
|
m_ui.codeView->setColumnWidth(4, m_ui.codeView->width() - (40 + 100 + 90 + 250));
|
|
|
|
|
|
|
|
|
|
m_registers_model = std::make_unique<DebuggerRegistersModel>();
|
|
|
|
|
m_ui.registerView->setModel(m_registers_model.get());
|
|
|
|
|
|