mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 00:41:09 +02:00
gui/bedit/bouqueteditor: use Font::getMaxDigitWidth()
Origin commit data
------------------
Branch: ni/coolstream
Commit: 4dcc804a39
Author: martii <m4rtii@gmx.de>
Date: 2013-12-08 (Sun, 08 Dec 2013)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -139,16 +139,12 @@ void CBEChannelWidget::paint()
|
||||
liststart = (selected/listmaxshow)*listmaxshow;
|
||||
int lastnum = liststart + listmaxshow;
|
||||
|
||||
if(lastnum<10)
|
||||
numwidth = g_Font[SNeutrinoSettings::FONT_TYPE_CHANNELLIST_NUMBER]->getRenderWidth("0");
|
||||
else if(lastnum<100)
|
||||
numwidth = g_Font[SNeutrinoSettings::FONT_TYPE_CHANNELLIST_NUMBER]->getRenderWidth("00");
|
||||
else if(lastnum<1000)
|
||||
numwidth = g_Font[SNeutrinoSettings::FONT_TYPE_CHANNELLIST_NUMBER]->getRenderWidth("000");
|
||||
else if(lastnum<10000)
|
||||
numwidth = g_Font[SNeutrinoSettings::FONT_TYPE_CHANNELLIST_NUMBER]->getRenderWidth("0000");
|
||||
else // if(lastnum<100000)
|
||||
numwidth = g_Font[SNeutrinoSettings::FONT_TYPE_CHANNELLIST_NUMBER]->getRenderWidth("00000");
|
||||
int maxDigitWidth = g_Font[SNeutrinoSettings::FONT_TYPE_CHANNELLIST_NUMBER]->getMaxDigitWidth();
|
||||
int _lastnum = lastnum;
|
||||
while (_lastnum) {
|
||||
numwidth += maxDigitWidth;
|
||||
_lastnum /= 10;
|
||||
}
|
||||
|
||||
for(unsigned int count=0;count<listmaxshow;count++)
|
||||
{
|
||||
|
Reference in New Issue
Block a user