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
3b4b43b4
Commit
3b4b43b4
authored
Aug 05, 2021
by
Julius Künzel
⚠
Browse files
Fix some deprecation warnings
parent
42b10c96
Pipeline
#73491
canceled with stage
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/dialogs/timeremap.cpp
View file @
3b4b43b4
...
...
@@ -972,7 +972,8 @@ void RemapView::wheelEvent(QWheelEvent *event)
}
int
change
=
event
->
angleDelta
().
y
()
>
0
?
-
1
:
1
;
int
pos
=
qBound
(
0
,
m_position
+
change
,
m_duration
-
1
);
if
(
event
->
y
()
<
m_bottomView
)
{
if
(
event
->
position
().
y
()
<
m_bottomView
)
{
emit
seekToPos
(
pos
+
m_inFrame
,
-
1
);
}
else
{
// Wheel on zoom bar, scroll
...
...
src/statusbarmessagelabel.cpp
View file @
3b4b43b4
...
...
@@ -232,7 +232,7 @@ bool StatusBarMessageLabel::slotMessageTimeout()
}
}
QColor
bgColor
=
KStatefulBrush
(
KColorScheme
::
Window
,
KColorScheme
::
NegativeBackground
).
brush
(
m_container
).
color
();
QColor
bgColor
=
KStatefulBrush
(
KColorScheme
::
Window
,
KColorScheme
::
NegativeBackground
).
brush
(
m_container
->
palette
()
).
color
();
const
char
*
iconName
=
nullptr
;
m_container
->
setColor
(
m_container
->
palette
().
window
().
color
());
switch
(
m_currentMessage
.
type
)
{
...
...
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