Enlightenment CVS committal

Author  : moom
Project : e17
Module  : proto

Dir     : e17/proto/etk/data/themes/default/widgets


Modified Files:
        combobox.edc toggle_button.edc 


Log Message:
* [Theme] When you release a combobox button or a toggle button with the 
mouse out of the widget, it no longer looks pressed.
* [Combobox] The hidden items are no longer displayed in the combobox 
window


===================================================================
RCS file: /cvs/e/e17/proto/etk/data/themes/default/widgets/combobox.edc,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- combobox.edc        13 May 2006 23:44:40 -0000      1.6
+++ combobox.edc        14 May 2006 14:14:58 -0000      1.7
@@ -249,7 +249,7 @@
          signal: "deactivate";
          source: "";
          script {
-            desactivate();
+            deactivate();
          }
       }
       program {
@@ -365,7 +365,7 @@
          set_state(PART:"combo_button", "on", 0.0);
          set_state(PART:"swallow_area", "down", 0.0);
       }
-      public desactivate()
+      public deactivate()
       {
          activated = 0;
          set_state(PART:"combo_button", "default", 0.0);
@@ -373,10 +373,10 @@
       }
       public up()
       {
-         if (activated)
+         if (activated  == 1)
             activate();
          else
-            desactivate();
+            deactivate();
       }
    }
 }
===================================================================
RCS file: /cvs/e/e17/proto/etk/data/themes/default/widgets/toggle_button.edc,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- toggle_button.edc   12 Mar 2006 12:13:01 -0000      1.8
+++ toggle_button.edc   14 May 2006 14:14:58 -0000      1.9
@@ -236,7 +236,7 @@
          signal: "deactivate";
          source: "";
          script {
-            desactivate();
+            deactivate();
          }
       }
       program {
@@ -354,7 +354,7 @@
          set_state(PART:"toggle_button", "on", 0.0);
          set_state(PART:"swallow_area", "down", 0.0);
       }
-      public desactivate()
+      public deactivate()
       {
          activated = 0;
          set_state(PART:"toggle_button", "default", 0.0);
@@ -362,10 +362,10 @@
       }
       public up()
       {
-         if (activated)
+         if (activated == 1)
             activate();
          else
-            desactivate();
+            deactivate();
       }
    }
 }




-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to