320x320 max for winlist by default (no config options yet)

SVN revision: 15289
This commit is contained in:
Carsten Haitzler 2005-06-13 09:36:40 +00:00
parent 759636bd4a
commit c2f9d0592b
2 changed files with 2 additions and 3 deletions

1
TODO
View File

@ -59,7 +59,6 @@ These are in no particular order:
* winlist - popup win size/pos should be configurable
* winlist - support different window list fill policies
* winlist - make warp pointer optional if in click to focus mode
* winlist - gfx suck - fix them
* coudl speedup dropshadow's gaussian blurr with mmx and sse by doign 2 or 4 rows at once
* make it easy for moduels to hook into ipc and extend it for themselves
* check evas has eet support early on.

View File

@ -82,7 +82,7 @@ e_winlist_show(E_Zone *zone)
w = zone->w / 2;
if (w > 320) w = 320;
h = zone->h / 2;
if (h > 400) h = 400;
if (h > 320) h = 320;
x = (zone->w - w) / 2;
y = (zone->h - h) / 2;
@ -285,7 +285,7 @@ _e_winlist_size_adjust(void)
w = winlist->zone->w / 2;
if (w > 320) w = 320;
h = mh;
if (h > 400) h = 400;
if (h > 320) h = 320;
x = (winlist->zone->w - w) / 2;
y = (winlist->zone->h - h) / 2;
evas_object_resize(bg_object, w, h);