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
e636bae4
Commit
e636bae4
authored
Nov 17, 2020
by
Nate Graham
Browse files
Correct indentation and whitespace in prior commit
parent
edced846
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/views/dolphinviewactionhandler.cpp
View file @
e636bae4
...
...
@@ -78,12 +78,12 @@ void DolphinViewActionHandler::createActions()
// KNewFileMenu takes care of the GUI stuff.
QAction
*
newDirAction
=
m_actionCollection
->
addAction
(
QStringLiteral
(
"create_dir"
));
newDirAction
->
setText
(
i18nc
(
"@action"
,
"Create Folder..."
));
#if KCONFIG_VERSION >= QT_VERSION_CHECK(5, 74, 0)
m_actionCollection
->
setDefaultShortcuts
(
newDirAction
,
KStandardShortcut
::
createFolder
());
#else
m_actionCollection
->
setDefaultShortcut
(
newDirAction
,
Qt
::
Key_F10
);
#endif
newDirAction
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"folder-new"
)));
#if KCONFIG_VERSION >= QT_VERSION_CHECK(5, 74, 0)
m_actionCollection
->
setDefaultShortcuts
(
newDirAction
,
KStandardShortcut
::
createFolder
());
#else
m_actionCollection
->
setDefaultShortcut
(
newDirAction
,
Qt
::
Key_F10
);
#endif
newDirAction
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"folder-new"
)));
newDirAction
->
setEnabled
(
false
);
// Will be enabled in slotWriteStateChanged(bool) if the current URL is writable
connect
(
newDirAction
,
&
QAction
::
triggered
,
this
,
&
DolphinViewActionHandler
::
createDirectoryTriggered
);
...
...
Nate Graham
@ngraham
mentioned in merge request
!52 (merged)
·
Nov 17, 2020
mentioned in merge request
!52 (merged)
mentioned in merge request !52
Toggle commit list
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