[squeak-dev] Re: Howto avoid: CTRL + RED => CTRL + BLUE

Marcel Taeumel marcel.taeumel at student.hpi.uni-potsdam.de
Tue May 24 12:17:03 UTC 2011


It's in the VM...

if(red && !blue && !yellow) { /* red button honors modifiers */
    if(alt && !ctrl) {
      red = 0; blue = 1;
    }
    if(ctrl && !alt) {
      red = 0; yellow = 1;
    }
  }

I don't like that... Shouldn't be necessary nowadays, or? I think it's even
a wrong behavior of the VM. CTRL+RED vs. BLUE could be two different
actions.

Marcel

--
View this message in context: http://forum.world.st/Howto-avoid-CTRL-RED-CTRL-BLUE-tp3546853p3546903.html
Sent from the Squeak - Dev mailing list archive at Nabble.com.



More information about the Squeak-dev mailing list