Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
kdenlive
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Akhil K Gangadharan
kdenlive
Commits
8d207615
Commit
8d207615
authored
Apr 12, 2019
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix broken spacer tool and thumbnails disappearing with razor and space tools
parent
4bc1aee3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/timeline2/model/timelinefunctions.cpp
src/timeline2/model/timelinefunctions.cpp
+1
-1
src/timeline2/view/qml/Clip.qml
src/timeline2/view/qml/Clip.qml
+2
-2
No files found.
src/timeline2/model/timelinefunctions.cpp
View file @
8d207615
...
...
@@ -246,7 +246,7 @@ bool TimelineFunctions::requestSpacerEndOperation(const std::shared_ptr<Timeline
// Start undoable command
std
::
function
<
bool
(
void
)
>
undo
=
[]()
{
return
true
;
};
std
::
function
<
bool
(
void
)
>
redo
=
[]()
{
return
true
;
};
int
res
=
timeline
->
requestClipsGroup
(
clips
,
undo
,
redo
);
int
res
=
timeline
->
requestClipsGroup
(
clips
,
undo
,
redo
,
GroupType
::
Selection
);
bool
final
=
false
;
if
(
res
>
-
1
)
{
if
(
clips
.
size
()
>
1
)
{
...
...
src/timeline2/view/qml/Clip.qml
View file @
8d207615
...
...
@@ -236,10 +236,10 @@ Rectangle {
}
MouseArea
{
id
:
mouseArea
visible
:
root
.
activeTool
===
0
enabled
:
root
.
activeTool
===
0
anchors.fill
:
clipRoot
acceptedButtons
:
Qt
.
RightButton
hoverEnabled
:
true
hoverEnabled
:
root
.
activeTool
===
0
cursorShape
:
dragProxyArea
.
drag
.
active
?
Qt
.
ClosedHandCursor
:
Qt
.
OpenHandCursor
onPressed
:
{
root
.
stopScrolling
=
true
...
...
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