Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : apps/e_modules

Dir     : e17/apps/e_modules/src/modules/notes


Modified Files:
        TODO e_mod_main.c 


Log Message:
fixed gadman move focus problem
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e_modules/src/modules/notes/TODO,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- TODO        30 Mar 2005 22:46:02 -0000      1.4
+++ TODO        31 Mar 2005 08:50:16 -0000      1.5
@@ -1,4 +1,3 @@
-* bug: when we move a note, we cant get focus events on it any more (mouse_in)
 * add Contiguration -> Options -> Background (color changes?) (done, refine)
 * add Contiguration -> Options -> Transparency (0% 25% 50% 75% 100%) (add cb)
 * allow for multiple note creation
===================================================================
RCS file: 
/cvsroot/enlightenment/e17/apps/e_modules/src/modules/notes/e_mod_main.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- e_mod_main.c        31 Mar 2005 00:05:37 -0000      1.9
+++ e_mod_main.c        31 Mar 2005 08:50:16 -0000      1.10
@@ -375,7 +375,6 @@
 {
    Evas_Event_Mouse_In *ev = event_info;
    Note_Face *nf = data;
-   printf("Note focused!\n");   
    esmart_textarea_focus_set(nf->note_object, 1);
 }
 
@@ -385,7 +384,6 @@
 {
    Evas_Event_Mouse_In *ev = event_info;
    Note_Face *nf = data;
-   printf("Note unfocused!\n");
    esmart_textarea_focus_set(nf->note_object, 0);
 }
 
@@ -476,9 +474,10 @@
        evas_object_move(nf->event_object, x, y);
        evas_object_resize(nf->event_object, w, h);
        break;
-      case E_GADMAN_CHANGE_RAISE:
-       evas_object_raise(nf->note_object);
-       evas_object_raise(nf->event_object);    
+      case E_GADMAN_CHANGE_RAISE: // leaving this in fucks up layering
+                                 // perhaps look into the smart object?
+       //evas_object_raise(nf->note_object);
+       //evas_object_raise(nf->event_object);  
        break;
       case E_GADMAN_CHANGE_EDGE:
       case E_GADMAN_CHANGE_ZONE:




-------------------------------------------------------
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/info/Sentarus/hamr30
_______________________________________________
enlightenment-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to