diff --git a/TODO b/TODO index f3db61d6b..1f3db25d2 100644 --- a/TODO +++ b/TODO @@ -15,10 +15,6 @@ Some of the things (in very short form) that need to be done to E17... right (maybe put stripped exe as exe and a exe_params with all %'s there.) * BUG: smart placement seems to screw up if a shelf is at the top of the screen * BUG: e17 screen res diaolg doesnt work under xephyr - why? -* BUG: the ibar specific menu only shows when you right click on icons (and not - on the bar itself). so, if there are no icons you can't get to the config. - ibox also has this problem..related to the o_empty object not resizing when - the module does. * BUG: "match this window only" doesnt fall back to other unused remembers * BUG: if app asks for borderless in properties - borderless toggle in menu doesn't have any effect. diff --git a/src/bin/e_gadcon.c b/src/bin/e_gadcon.c index c9d739bc0..a7d806948 100644 --- a/src/bin/e_gadcon.c +++ b/src/bin/e_gadcon.c @@ -1281,15 +1281,11 @@ _e_gadcon_moveresize_handle(E_Gadcon_Client *gcc) { if ((gcc->aspect.w > 0) && (gcc->aspect.h > 0)) w = (h * gcc->aspect.w) / gcc->aspect.h; - else - w = gcc->min.w; } else { if ((gcc->aspect.w > 0) && (gcc->aspect.h > 0)) h = (w * gcc->aspect.h) / gcc->aspect.w; - else - h = gcc->min.h; } } e_box_pack_options_set(gcc->o_base, diff --git a/src/modules/ibar/e_mod_main.c b/src/modules/ibar/e_mod_main.c index a41e9158c..6d4366241 100644 --- a/src/modules/ibar/e_mod_main.c +++ b/src/modules/ibar/e_mod_main.c @@ -210,8 +210,6 @@ _gc_orient(E_Gadcon_Client *gcc) default: break; } - if (evas_list_count(inst->ibar->icons) < 1) - e_gadcon_client_aspect_set(gcc, 16, 16); e_gadcon_client_min_size_set(gcc, 16, 16); } @@ -346,7 +344,7 @@ _ibar_empty_handle(IBar *b) 1, 1, /* expand */ 0.5, 0.5, /* align */ w, h, /* min */ - w, h /* max */ + 9999, 9999 /* max */ ); } } diff --git a/src/modules/ibox/e_mod_main.c b/src/modules/ibox/e_mod_main.c index dc4e7d40e..207cb780e 100644 --- a/src/modules/ibox/e_mod_main.c +++ b/src/modules/ibox/e_mod_main.c @@ -219,8 +219,6 @@ _gc_orient(E_Gadcon_Client *gcc) default: break; } - if (evas_list_count(inst->ibox->icons) < 1) - e_gadcon_client_aspect_set(gcc, 16, 16); e_gadcon_client_min_size_set(gcc, 16, 16); } @@ -336,7 +334,7 @@ _ibox_empty_handle(IBox *b) 1, 1, /* expand */ 0.5, 0.5, /* align */ w, h, /* min */ - w, h /* max */ + 9999, 9999 /* max */ ); } }