diff options
| author | Roman Inflianskas <[email protected]> | 2018-03-03 11:46:14 +0300 |
|---|---|---|
| committer | Roman Inflianskas <[email protected]> | 2018-03-03 16:44:29 +0300 |
| commit | 32bd8efc7f08a30622deaa3a80b7b26ceaea9f29 (patch) | |
| tree | 958f7e674b515ba07838800ce9624e3be0a63823 /src/settings/viewpropertiesdialog.cpp | |
| parent | 436ad965e93409e2225b3d0451e997fb655b3e87 (diff) | |
Modernize the syntax of shortcuts
Reviewers: #dolphin, markg
Reviewed By: markg
Subscribers: markg, elvisangelaccio, #dolphin
Differential Revision: https://phabricator.kde.org/D10986
Diffstat (limited to 'src/settings/viewpropertiesdialog.cpp')
| -rw-r--r-- | src/settings/viewpropertiesdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settings/viewpropertiesdialog.cpp b/src/settings/viewpropertiesdialog.cpp index 980ab0bba..8c5fccdef 100644 --- a/src/settings/viewpropertiesdialog.cpp +++ b/src/settings/viewpropertiesdialog.cpp @@ -198,7 +198,7 @@ ViewPropertiesDialog::ViewPropertiesDialog(DolphinView* dolphinView) : layout->addWidget(buttonBox); auto okButton = buttonBox->button(QDialogButtonBox::Ok); - okButton->setShortcut(Qt::CTRL | Qt::Key_Return); + okButton->setShortcut(Qt::CTRL + Qt::Key_Return); okButton->setDefault(true); auto applyButton = buttonBox->button(QDialogButtonBox::Apply); |
