1. image size bounds checks for eet

2. e17 bug
3. color class add fir ibar state of label
4. epeg scales before getting pixel data.


SVN revision: 27205
This commit is contained in:
Carsten Haitzler 2006-11-25 15:37:45 +00:00
parent e3ef791993
commit 5027028cc6
3 changed files with 8 additions and 1 deletions

1
TODO
View File

@ -8,6 +8,7 @@ Some of the things (in very short form) that need to be done to E17...
BUGS / FIXES
-------------------------------------------------------------------------------
* conifguring buttons for pager drag is broken
* apparently with locales other than english/c the about box textblock breaks
newlines on every word (maybe the utf8 decode patch? for evas?)
* IBar will resize itself down to single icon size on start/restart under some

View File

@ -212,6 +212,7 @@ group {
}
color: 255 255 255 0;
color3: 0 0 0 0;
color_class: "module_label";
text {
text: "";
font: "Edje-Vera-Bold";

View File

@ -1001,7 +1001,12 @@ _grab_key_down_cb(void *data, int type, void *event)
}
else
{
printf("'%s' '%s' '%s'\n", ev->keyname, ev->keysymbol, ev->key_compose);
if ((ev->keyname) && (ev->keysymbol) && (ev->key_compose))
printf("'%s' '%s' '%s'\n", ev->keyname, ev->keysymbol, ev->key_compose);
else if ((ev->keyname) && (ev->keysymbol))
printf("'%s' '%s'\n", ev->keyname, ev->keysymbol);
else
printf("unknown key!!!!\n");
if (!strcmp(ev->keyname, "Control_L") || !strcmp(ev->keyname, "Control_R") ||
!strcmp(ev->keyname, "Shift_L") || !strcmp(ev->keyname, "Shift_R") ||
!strcmp(ev->keyname, "Alt_L") || !strcmp(ev->keyname, "Alt_R") ||