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
System
Dolphin
Commits
3b74e4a3
Commit
3b74e4a3
authored
Nov 22, 2020
by
Alexander Lohnau
💬
Browse files
Remove unneeded version check
parent
48fec6c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/views/dolphinviewactionhandler.cpp
View file @
3b74e4a3
...
@@ -79,11 +79,7 @@ void DolphinViewActionHandler::createActions()
...
@@ -79,11 +79,7 @@ void DolphinViewActionHandler::createActions()
// KNewFileMenu takes care of the GUI stuff.
// KNewFileMenu takes care of the GUI stuff.
QAction
*
newDirAction
=
m_actionCollection
->
addAction
(
QStringLiteral
(
"create_dir"
));
QAction
*
newDirAction
=
m_actionCollection
->
addAction
(
QStringLiteral
(
"create_dir"
));
newDirAction
->
setText
(
i18nc
(
"@action"
,
"Create Folder..."
));
newDirAction
->
setText
(
i18nc
(
"@action"
,
"Create Folder..."
));
#if KCONFIG_VERSION >= QT_VERSION_CHECK(5, 74, 0)
m_actionCollection
->
setDefaultShortcuts
(
newDirAction
,
KStandardShortcut
::
createFolder
());
m_actionCollection
->
setDefaultShortcuts
(
newDirAction
,
KStandardShortcut
::
createFolder
());
#else
m_actionCollection
->
setDefaultShortcut
(
newDirAction
,
Qt
::
Key_F10
);
#endif
newDirAction
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"folder-new"
)));
newDirAction
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"folder-new"
)));
newDirAction
->
setEnabled
(
false
);
// Will be enabled in slotWriteStateChanged(bool) if the current URL is writable
newDirAction
->
setEnabled
(
false
);
// Will be enabled in slotWriteStateChanged(bool) if the current URL is writable
connect
(
newDirAction
,
&
QAction
::
triggered
,
this
,
&
DolphinViewActionHandler
::
createDirectoryTriggered
);
connect
(
newDirAction
,
&
QAction
::
triggered
,
this
,
&
DolphinViewActionHandler
::
createDirectoryTriggered
);
...
...
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