fix overpaint buttons in channellist edit mode

Origin commit data
------------------
Branch: ni/coolstream
Commit: 74d27b1552
Author: max_10 <max_10@gmx.de>
Date: 2018-02-02 (Fri, 02 Feb 2018)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
max_10
2018-02-02 20:24:18 +01:00
committed by vanhofen
parent 1f84dc9470
commit d0352d6aa0

View File

@@ -309,14 +309,20 @@ void CComponentsHeader::initLogo()
*/
if (next_item){
if (next_item->getItemType() == CC_ITEMTYPE_FRM_ICONFORM)
next_item = cch_cl_obj;
/* either clock is present
* or in chanellist edit mode
* possible button */
if (cch_cl_obj)
next_item = cch_cl_obj;
else
next_item = cch_btn_obj;
}
/*
* Adjust usable space for logo.
*/
int x_logo_left = prev_item ? prev_item->getXPos() + prev_item->getWidth() : cch_offset;
int x_logo_right = next_item ? next_item->getXPos() : width - cch_offset;
int x_logo_right = next_item ? next_item->getXPos() - OFFSET_INNER_MID : width - cch_offset;
int logo_space = x_logo_right - x_logo_left;
/*