- framebuffer: better name for getWindowWidth/Height() functions

getScreenWidth/HeightRel() was confusing because it depends on users window settings.
Replace names in old unused framebuffer code too.

Signed-off-by: Thilo Graf <dbt@novatux.de>

 Conflicts:
	gui/channellist.cpp
This commit is contained in:
svenhoefer
2018-01-22 12:06:15 +01:00
committed by Thilo Graf
parent e32dc71ead
commit 3b65251e00
17 changed files with 43 additions and 43 deletions

View File

@@ -111,8 +111,8 @@ void CUpnpBrowserGui::Init()
timebox.enableColBodyGradient(g_settings.theme.menu_Hint_gradient, COL_SHADOW_PLUS_0, g_settings.theme.menu_Hint_gradient_direction);
timebox.enableShadow(CC_SHADOW_ON);
m_width = m_frameBuffer->getScreenWidthRel();
m_height = m_frameBuffer->getScreenHeightRel();
m_width = m_frameBuffer->getWindowWidth();
m_height = m_frameBuffer->getWindowHeight();
int _top_height = g_Font[SNeutrinoSettings::FONT_TYPE_MENU_INFO]->getHeight();
int _title_height = g_Font[SNeutrinoSettings::FONT_TYPE_MENU_TITLE]->getHeight();