Skip to content

Commit 41daa01

Browse files
committed
sourceswidget: don't use a hardcoded path
1 parent 19fcb73 commit 41daa01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gui/qt/debugger/sourceswidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ SourcesWidget::SourcesWidget(QWidget *parent) : QWidget(parent) {
412412
SourcesWidget::~SourcesWidget() = default;
413413

414414
void SourcesWidget::selectDebugFile() {
415-
QString debugName = QFileDialog::getOpenFileName(this, tr("Open Debug File"), "/home/jacob/Programming/ez80/oiram/bin", tr("Debug File (*.debug)"));
415+
QString debugName = QFileDialog::getOpenFileName(this, tr("Open Debug File"), QString(), tr("Debug File (*.debug)"));
416416
if (debugName.isNull()) {
417417
return;
418418
}

0 commit comments

Comments
 (0)