Changeset 68

Show
Ignore:
Timestamp:
07/21/08 23:00:37 (2 months ago)
Author:
bi..@lilyapp.org
Message:

fix bug #23

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lily/lily/chrome/content/externals/mouse.js

    r1 r68  
    4646         
    4747        function mouseDownFunc(e) { 
    48                 thisPtr.outlet3.doOutlet(1); 
     48                if(!e.button) { 
     49                        thisPtr.outlet3.doOutlet(1);     
     50                }                
    4951        } 
    5052         
    5153        function mouseUpFunc(e) { 
    52                 thisPtr.outlet3.doOutlet(0); 
     54                if(!e.button) { 
     55                        thisPtr.outlet3.doOutlet(0); 
     56                }                
    5357        } 
    5458         
    5559        function mouseClickFunc(e) { 
    56                 thisPtr.outlet4.doOutlet("bang"); 
     60                if(!e.button) { 
     61                        thisPtr.outlet4.doOutlet("bang");        
     62                } 
    5763        } 
    5864