Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Multimedia
Kdenlive
Commits
5bb69594
Commit
5bb69594
authored
Oct 19, 2019
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/audiomixer/mixerwidget.cpp
src/audiomixer/mixerwidget.cpp
+1
-1
No files found.
src/audiomixer/mixerwidget.cpp
View file @
5bb69594
...
@@ -367,7 +367,7 @@ void MixerWidget::updateLabel()
...
@@ -367,7 +367,7 @@ void MixerWidget::updateLabel()
QPalette
pal
=
m_trackLabel
->
palette
();
QPalette
pal
=
m_trackLabel
->
palette
();
pal
.
setColor
(
QPalette
::
Window
,
QColor
(
"#ff8c00"
));
pal
.
setColor
(
QPalette
::
Window
,
QColor
(
"#ff8c00"
));
m_trackLabel
->
setPalette
(
pal
);
m_trackLabel
->
setPalette
(
pal
);
}
else
if
(
m_solo
->
isChecked
())
{
}
else
if
(
m_solo
&&
m_solo
->
isChecked
())
{
QPalette
pal
=
m_trackLabel
->
palette
();
QPalette
pal
=
m_trackLabel
->
palette
();
pal
.
setColor
(
QPalette
::
Window
,
Qt
::
darkGreen
);
pal
.
setColor
(
QPalette
::
Window
,
Qt
::
darkGreen
);
m_trackLabel
->
setPalette
(
pal
);
m_trackLabel
->
setPalette
(
pal
);
...
...
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