Skip to content

Commit

Permalink
Refactor indentation for SetText lambda function
Browse files Browse the repository at this point in the history
  • Loading branch information
soramimi committed May 15, 2024
1 parent 6925a03 commit 8b64e85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/EditGitIgnoreDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ EditGitIgnoreDialog::EditGitIgnoreDialog(MainWindow *parent, QString const &giti

auto SetText = [](QRadioButton *button, QString const &text) {
if (!text.isEmpty()) {
button->setText(text);
button->setObjectName(text);
button->setVisible(true);
button->setText(text);
button->setObjectName(text);
button->setVisible(true);
}
};

Expand Down

0 comments on commit 8b64e85

Please sign in to comment.