CVolumeBar: Reactivate position 'higher center' for volume bar

Origin commit data
------------------
Commit: c70167b58f
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-06-06 (Thu, 06 Jun 2013)
This commit is contained in:
Michael Liebmann
2013-06-06 11:03:17 +02:00
parent 176d7e22a9
commit 56c1d0a7d5
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;
}
}