mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 08:21:12 +02:00
CComponents: remove wrong init value for item position
This causes an unnecessary offset and possible fb-remains. This was observed at the header in Imageinfo, but only without shadow.
This commit is contained in:
@@ -56,8 +56,8 @@ void CComponents::clearSavedScreen()
|
||||
|
||||
void CComponents::initVarBasic()
|
||||
{
|
||||
x = saved_screen.x = 1;
|
||||
y = saved_screen.y = 1;
|
||||
x = saved_screen.x = 0;
|
||||
y = saved_screen.y = 0;
|
||||
cc_xr = x;
|
||||
cc_yr = y;
|
||||
height = saved_screen.dy = CC_HEIGHT_MIN;
|
||||
|
Reference in New Issue
Block a user