Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Kdenlive
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
258
Issues
258
List
Boards
Labels
Service Desk
Milestones
Merge Requests
15
Merge Requests
15
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Multimedia
Kdenlive
Commits
34ce4c10
Commit
34ce4c10
authored
Apr 26, 2020
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated icon for find clip
parent
35e2a486
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/bin/bin.cpp
src/bin/bin.cpp
+1
-1
src/mainwindow.cpp
src/mainwindow.cpp
+1
-1
No files found.
src/bin/bin.cpp
View file @
34ce4c10
...
...
@@ -2563,7 +2563,7 @@ void Bin::setupMenu()
connect
(
downloadResourceAction
,
&
QAction
::
triggered
,
pCore
->
window
(),
&
MainWindow
::
slotDownloadResources
);
m_locateAction
=
addAction
(
QStringLiteral
(
"locate_clip"
),
i18n
(
"Locate Clip..."
),
QIcon
::
fromTheme
(
QStringLiteral
(
"
edit-file
"
)));
addAction
(
QStringLiteral
(
"locate_clip"
),
i18n
(
"Locate Clip..."
),
QIcon
::
fromTheme
(
QStringLiteral
(
"
find-location
"
)));
m_locateAction
->
setData
(
"locate_clip"
);
m_locateAction
->
setEnabled
(
false
);
connect
(
m_locateAction
,
&
QAction
::
triggered
,
this
,
&
Bin
::
slotLocateClip
);
...
...
src/mainwindow.cpp
View file @
34ce4c10
...
...
@@ -1554,7 +1554,7 @@ void MainWindow::setupActions()
act
->
setEnabled
(
false
);
act
=
addAction
(
QStringLiteral
(
"clip_in_project_tree"
),
i18n
(
"Clip in Project Bin"
),
this
,
SLOT
(
slotClipInProjectTree
()),
QIcon
::
fromTheme
(
QStringLiteral
(
"
go-jump-defini
tion"
)),
QKeySequence
(),
clipActionCategory
);
QIcon
::
fromTheme
(
QStringLiteral
(
"
find-loca
tion"
)),
QKeySequence
(),
clipActionCategory
);
act
->
setEnabled
(
false
);
// "C" as data means this action should only be available for clips - not for compositions
act
->
setData
(
'C'
);
...
...
Write
Preview
Markdown
is supported
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