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
Multimedia
Kdenlive
Commits
221a1dd1
Commit
221a1dd1
authored
Mar 01, 2021
by
Julius Künzel
Browse files
Change shortcut for Loop Zone to avoid conflict with windows system
shortcut Fixes
#791
parent
c8efd12b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mainwindow.cpp
View file @
221a1dd1
...
...
@@ -1390,7 +1390,7 @@ void MainWindow::setupActions()
m_playZone
=
addAction
(
QStringLiteral
(
"monitor_play_zone"
),
i18n
(
"Play Zone"
),
pCore
->
monitorManager
(),
SLOT
(
slotPlayZone
()),
QIcon
::
fromTheme
(
QStringLiteral
(
"media-playback-start"
)),
Qt
::
CTRL
+
Qt
::
Key_Space
);
m_loopZone
=
addAction
(
QStringLiteral
(
"monitor_loop_zone"
),
i18n
(
"Loop Zone"
),
pCore
->
monitorManager
(),
SLOT
(
slotLoopZone
()),
QIcon
::
fromTheme
(
QStringLiteral
(
"media-playback-start"
)),
Qt
::
AL
T
+
Qt
::
Key_Space
);
QIcon
::
fromTheme
(
QStringLiteral
(
"media-playback-start"
)),
Qt
::
CTRL
+
Qt
::
SHIF
T
+
Qt
::
Key_Space
);
m_loopClip
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"media-playback-start"
)),
i18n
(
"Loop selected clip"
),
this
);
addAction
(
QStringLiteral
(
"monitor_loop_clip"
),
m_loopClip
);
m_loopClip
->
setEnabled
(
false
);
...
...
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