mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 17:10:44 +08:00
Change dialogs to use Qt's version.
The native dialogs have different behavior when dealing with filters. Qt's behavior is well defined.
This commit is contained in:
@@ -48,7 +48,7 @@ void SeerGdbConfigPage::setGdbAsyncMode (bool flag) {
|
||||
|
||||
void SeerGdbConfigPage::handleGdbProgramToolButton () {
|
||||
|
||||
QString program = QFileDialog::getOpenFileName(this, "Select a gdb program to use as the debugger.", gdbProgram());
|
||||
QString program = QFileDialog::getOpenFileName(this, "Select a gdb program to use as the debugger.", gdbProgram(), "", nullptr, QFileDialog::DontUseNativeDialog);
|
||||
|
||||
if (program != "") {
|
||||
setGdbProgram(program);
|
||||
|
||||
Reference in New Issue
Block a user