diff --git a/geometrymanager.c b/geometrymanager.c index a92f823..28e4e96 100644 --- a/geometrymanager.c +++ b/geometrymanager.c @@ -12,19 +12,19 @@ cGeometryManager::~cGeometryManager() { } bool cGeometryManager::SetGeometry(int osdWidth, int osdHeight, bool force) { - if (!force && (this->osdWidth == osdWidth) && (this->osdHeight == osdHeight)) { - esyslog("tvgudie: GeoManager SetGeometry nothing to change"); - return false; - } - this->osdWidth = osdWidth; - this->osdHeight = osdHeight; - esyslog("tvguide: Set OSD to %d x %d px", osdWidth, osdHeight); + if (!force && (this->osdWidth == osdWidth) && (this->osdHeight == osdHeight)) { + esyslog("tvgudie: GeoManager SetGeometry nothing to change"); + return false; + } + this->osdWidth = osdWidth; + this->osdHeight = osdHeight; + esyslog("tvguide: Set OSD to %d x %d px", osdWidth, osdHeight); - statusHeaderHeight = (config.displayStatusHeader) ? (config.headerHeightPercent * osdHeight / 100):0; + statusHeaderHeight = (config.displayStatusHeader) ? (config.headerHeightPercent * osdHeight / 100) : 0; tvFrameWidth = statusHeaderHeight * 16 / 9; headerContentWidth = (config.scaleVideo) ? (osdWidth - tvFrameWidth):osdWidth; - channelGroupsWidth = (config.displayChannelGroups) ? (config.channelGroupsPercent * osdWidth / 100):0; - channelGroupsHeight = (config.displayChannelGroups) ? (config.channelGroupsPercent * osdHeight / 100):0; + channelGroupsWidth = (config.displayChannelGroups) ? (config.channelGroupsPercent * osdWidth / 100) : 0; + channelGroupsHeight = (config.displayChannelGroups) ? (config.channelGroupsPercent * osdHeight / 100) : 0; channelHeaderWidth = config.channelHeaderWidthPercent * osdWidth / 100; channelHeaderHeight = config.channelHeaderHeightPercent * osdHeight / 100; timeLineWidth = config.timeLineWidthPercent * osdWidth / 100;