From c2f9d0592b7c51d6171a07dbf77acb5e6f435c70 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Mon, 13 Jun 2005 09:36:40 +0000 Subject: [PATCH] 320x320 max for winlist by default (no config options yet) SVN revision: 15289 --- TODO | 1 - src/bin/e_winlist.c | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/TODO b/TODO index a2b76a0ff..8e5c6d7d2 100644 --- a/TODO +++ b/TODO @@ -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. diff --git a/src/bin/e_winlist.c b/src/bin/e_winlist.c index 9778d8566..add81e4d2 100644 --- a/src/bin/e_winlist.c +++ b/src/bin/e_winlist.c @@ -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);