New Anaconda and Mouse Buttons

Przemek Klosowski przemek.klosowski at nist.gov
Tue Sep 18 18:09:16 UTC 2012


On 09/18/2012 01:26 PM, John.Florian at dart.biz wrote:

> PROPROSED:
> on (button-1-press or button-2-press or button-3-press) of ok_button do:
>      commit_changes()
> end;

I see two problems with this approach: it blocks forever any possibility 
of using multiple buttons in Anaconda, and makes it behave differently 
from the system it is about to install. I would prefer this:

on (button-1-press or button-2-press or button-3-press) of ok_button do:
  if (button-1-press) do:
    commit_changes()
  else
    ask_if_the_user_wants_to_change_the_mouse_handedness()
end;


More information about the devel mailing list