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
5bb69594
Commit
5bb69594
authored
Oct 19, 2019
by
Jean-Baptiste Mardelle
Browse files
Fix crash unselecting master mute.
parent
86e4fc1a
Pipeline
#9191
passed with stage
in 26 minutes and 7 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/audiomixer/mixerwidget.cpp
View file @
5bb69594
...
...
@@ -367,7 +367,7 @@ void MixerWidget::updateLabel()
QPalette
pal
=
m_trackLabel
->
palette
();
pal
.
setColor
(
QPalette
::
Window
,
QColor
(
"#ff8c00"
));
m_trackLabel
->
setPalette
(
pal
);
}
else
if
(
m_solo
->
isChecked
())
{
}
else
if
(
m_solo
&&
m_solo
->
isChecked
())
{
QPalette
pal
=
m_trackLabel
->
palette
();
pal
.
setColor
(
QPalette
::
Window
,
Qt
::
darkGreen
);
m_trackLabel
->
setPalette
(
pal
);
...
...
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