Hi All,
I have an extremely small suggestion to make life a tiny bit easier - in
the beginning when starting web2py using python web2py.py there appears a
dialog box.
In the dialog box, the password field has a binding on the '<Return>' to
start the server when the return key is pressed. I suggest adding a similar
binding to the port field (and maybe IP field as well), since usually the
focus is on the password field I fill it in first, and since I need a
different port and change it next and it will be very helpful if it
automatically opens the window after a return press.
the only change necessary is in the gluon.widget, around line 214 one has
to add:
self.port_number.bind('<Return>', lambda e: self.start())
and maybe around line 202 the same for the ip field.
Thanks,
Omri