fake xinerama broken - fixed.

SVN revision: 32181
This commit is contained in:
Carsten Haitzler 2007-10-28 04:03:40 +00:00
parent 10a28c5b49
commit 28874a2843
2 changed files with 3 additions and 0 deletions

View File

@ -326,6 +326,7 @@ e_fm2_hal_volume_mountpoint_get(E_Volume *v)
if (!v) return NULL;
if (v->mount_point)
{
printf("GET MOUNTPOINT = %s\n", v->mount_point);
return strdup(v->mount_point);
}
@ -340,6 +341,7 @@ e_fm2_hal_volume_mountpoint_get(E_Volume *v)
static int mount_count = 1;
snprintf(buf, sizeof(buf) - 1, "/media/unknown-%i", mount_count++);
}
printf("GET MOUNTPOINT = %s\n", buf);
return strdup(buf);
}

View File

@ -53,6 +53,7 @@ e_xinerama_fake_screen_add(int x, int y, int w, int h)
scr = calloc(1, sizeof(E_Screen));
scr->screen = evas_list_count(fake_screens);
scr->escren = scr->screen;
scr->x = x;
scr->y = y;
scr->w = w;