Skip to content

Commit

Permalink
fix: [cmake] Unable to save changes while in edit mode
Browse files Browse the repository at this point in the history
Log: as title
  • Loading branch information
LiHua000 committed Dec 25, 2024
1 parent 6dfce57 commit 8716b2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void RunConfigPane::setupUi()
// excutable label ui.
d->executableEdit = new DLineEdit(mainFrame);
d->executableEdit->setPlaceholderText(tr("Here is the executable path"));
connect(d->executableEdit, &DLineEdit::editingFinished, this, [this](){
connect(d->executableEdit, &DLineEdit::textChanged, this, [this](){
if (d->targetRunParam)
d->targetRunParam->targetPath = d->executableEdit->text();
});
Expand Down

0 comments on commit 8716b2c

Please sign in to comment.