Skip to content

Commit

Permalink
fixed DialogMuteBug not showing when volume set to minimum
Browse files Browse the repository at this point in the history
  • Loading branch information
pieh committed Aug 13, 2011
1 parent 6e9e899 commit 48f1ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/dialogs/GUIDialogMuteBug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ CGUIDialogMuteBug::~CGUIDialogMuteBug(void)

void CGUIDialogMuteBug::UpdateVisibility()
{
if (g_settings.m_bMute)
if (g_settings.m_bMute || g_settings.m_nVolumeLevel == VOLUME_MINIMUM)
Show();
else
Close();
Expand Down

0 comments on commit 48f1ffd

Please sign in to comment.