Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
3ac5cbd2
Commit
3ac5cbd2
authored
Jul 28, 2016
by
luyikei
Browse files
Clip.qml: Fix wrong calculation of width
parent
002274a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Gui/timeline/Clip.qml
View file @
3ac5cbd2
...
...
@@ -4,7 +4,7 @@ Rectangle {
id
:
clip
// NEVER SET X DIRECTLY. BINDING WILL BE REMOVED.
x
:
ftop
(
position
)
width
:
ftop
(
end
-
begin
)
width
:
ftop
(
end
-
begin
+
1
)
gradient
:
Gradient
{
GradientStop
{
id
:
gStop1
...
...
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