- remove w_max()-calls to define menu-width, because ...

w-max() returns a pixel-value, but menus need a percentage-value.
This commit is contained in:
svenhoefer
2015-04-24 09:11:04 +02:00
parent 907ea29f23
commit 9041bff59c
40 changed files with 46 additions and 46 deletions

View File

@@ -41,7 +41,7 @@
CZapitSetup::CZapitSetup()
{
width = w_max (40, 10); //%
width = 40;
}
CZapitSetup::~CZapitSetup()
@@ -109,7 +109,7 @@ int CZapitSetup::showMenu()
//select menu
CSelectChannelWidget::CSelectChannelWidget()
{
width = w_max (40, 10); //%
width = 40;
}
CSelectChannelWidget::~CSelectChannelWidget()