Skip to content

Commit

Permalink
Do not allow resizing the debug adapter settings dialog. Fix Vector35…
Browse files Browse the repository at this point in the history
  • Loading branch information
xusheng6 committed Apr 4, 2023
1 parent 083944e commit 298da77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/adaptersettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ AdapterSettingsDialog::AdapterSettingsDialog(QWidget* parent, DbgRef<DebuggerCon
QDialog(), m_controller(controller)
{
setWindowTitle("Debug Adapter Settings");
setMinimumSize(UIContext::getScaledWindowSize(400, 130));
setAttribute(Qt::WA_DeleteOnClose);

setModal(true);
Expand Down Expand Up @@ -118,6 +117,7 @@ AdapterSettingsDialog::AdapterSettingsDialog(QWidget* parent, DbgRef<DebuggerCon
m_workingDirectoryEntry->setText(QString::fromStdString(m_controller->GetWorkingDirectory()));

selectAdapter(m_adapterEntry->currentText());
setFixedSize(QDialog::sizeHint());
}


Expand Down

0 comments on commit 298da77

Please sign in to comment.