Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Filelight
Commits
9f806dae
Commit
9f806dae
authored
Dec 09, 2020
by
Laurent Montel
😁
Browse files
operator+/- is disabled for QFlags in qt6
parent
a49cd03d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mainWindow.cpp
View file @
9f806dae
...
...
@@ -151,7 +151,7 @@ void MainWindow::setupActions() //singleton function
action
=
ac
->
addAction
(
QStringLiteral
(
"scan_home"
),
this
,
&
MainWindow
::
slotScanHomeFolder
);
action
->
setText
(
i18n
(
"Scan &Home Folder"
));
action
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"user-home"
)));
ac
->
setDefaultShortcut
(
action
,
QKeySequence
(
Qt
::
CTRL
+
Qt
::
Key_Home
));
ac
->
setDefaultShortcut
(
action
,
QKeySequence
(
Qt
::
CTRL
|
Qt
::
Key_Home
));
action
=
ac
->
addAction
(
QStringLiteral
(
"scan_root"
),
this
,
&
MainWindow
::
slotScanRootFolder
);
action
->
setText
(
i18n
(
"Scan &Root Folder"
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment