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
873b2bee
Commit
873b2bee
authored
May 17, 2021
by
Julius Künzel
⚠
Browse files
Fix marker monitor overlayer flickers on hover
parent
441fc496
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/monitor/view/kdenliveclipmonitor.qml
View file @
873b2bee
...
...
@@ -525,7 +525,7 @@ Item {
height
:
childrenRect
.
height
color
:
Qt
.
rgba
(
activePalette
.
highlight
.
r
,
activePalette
.
highlight
.
g
,
activePalette
.
highlight
.
b
,
0.7
)
radius
:
4
opacity
:
(
dragAudioArea
.
containsMouse
||
dragVideoArea
.
containsMouse
||
thumbMouseArea
.
containsMouse
||
(
barOverArea
.
containsMouse
&&
(
barOverArea
.
mouseY
>=
(
parent
.
height
-
inPoint
.
height
-
height
-
2
-
(
audioThumb
.
height
+
root
.
zoomOffset
)
-
root
.
baseUnit
))))
?
1
:
0
opacity
:
(
dragAudioArea
.
containsMouse
||
dragVideoArea
.
containsMouse
||
thumbMouseArea
.
containsMouse
||
marker
.
hovered
||
(
barOverArea
.
containsMouse
&&
(
barOverArea
.
mouseY
>=
(
parent
.
height
-
inPoint
.
height
-
height
-
2
-
(
audioThumb
.
height
+
root
.
zoomOffset
)
-
root
.
baseUnit
))))
?
1
:
0
visible
:
controller
.
clipHasAV
onOpacityChanged
:
{
if
(
opacity
==
1
)
{
...
...
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