CVolumeBar: Reactivate position 'higher center' for volume bar

This commit is contained in:
Michael Liebmann
2013-06-06 11:03:17 +02:00
parent d08d18522e
commit c70167b58f
6 changed files with 11 additions and 2 deletions

View File

@@ -148,6 +148,10 @@ void CVolumeBar::initVolumeBarPosition()
x = ((sw - width) / 2) + x - h_spacer/2;
y = (sh + frameBuffer->getScreenY()) - height - v_spacer;
break;
case 6:// higher center
x = ((sw - width) / 2) + x - h_spacer/2;
y = (sh + frameBuffer->getScreenY()) - sh/10;
break;
}
}