Display the correct background for monitors @fix T1260

Looks like a typo, but let's use the correct coordinates to look up the
zone
This commit is contained in:
Andy Williams 2014-05-17 22:17:26 +01:00
parent e8edb6d2ed
commit bfe9dfcf6f
2 changed files with 2 additions and 2 deletions

View File

@ -184,8 +184,8 @@ e_smart_randr_monitors_create(Evas_Object *obj)
e_smart_monitor_grid_set(mon, sd->o_grid, gx, gy, gw, gh);
/* if the output has no size, find an appropriate */
cx = output->cfg->geo.w;
cy = output->cfg->geo.w;
cx = output->cfg->geo.x;
cy = output->cfg->geo.y;
cw = output->cfg->geo.w;
ch = output->cfg->geo.h;
if ((cw == 0) && (ch == 0))