Alan Moore added the comment:
Spent some time today with IDLE and PDB, and I've ruled out any other program
on my system as the culprit:
- I can create a tkinter GUI that will respond to a binding like
and it works fine.
- In pdb, I can bind <> to a callback and it is getting
Alan Moore added the comment:
Ok, sorry to keep poking at this issue, but I think I was too hasty in blaming
firefox.
As I previously mentioned, IDLE "forgot" that Ctrl-N meant "next line" and
reverted it to "new window". I fixed that behavior by chang
Alan Moore added the comment:
An interesting note this morning, and again I don't know if this is actually an
IDLE bug; I had left IDLE running overnight and opened a new code window this
morning. Somehow IDLE "forgot" that Ctrl-N means "next line" and not "
Alan Moore added the comment:
OK, it seems that closing all my firefox windows restored correct behavior to
IDLE. I can only guess that somehow firefox was eating the Ctrl-x.
Not sure if this is a firefox issue, a window manager issue, or an IDLE issue.
If you think it's not the l
New submission from Alan Moore :
Using IDLE 3.9.1 on Arch Linux.
In IDLE I've selected the "classic unix" key set. It worked for a while, then
stopped registering key combinations for more than one key (e.g. Ctrl-x Ctrl-s).
Have tried creating a custom key set and manua
Alan Moore added the comment:
Thank you for all your help!
On 02/09/2018 05:41 AM, Serhiy Storchaka wrote:
> Serhiy Storchaka added the comment:
>
> Thank you for your contribution Alan!
>
> --
> resolution: -> fixed
> stage: patch review -> resolv
Alan Moore added the comment:
Thanks, I'm guessing the update_idletasks() needed to be called after
changing the value of command, since the button clicks do this as part
of the method. If that's not right, let me know.
I've added the options to the list and pushed the ch
New submission from Alan Moore :
Ttk has a spinbox widget, which is a themed version of Tkinter spinbox, but
this is missing from Python's ttk implementation.
--
components: Tkinter
messages: 310198
nosy: Alan Moore
priority: normal
severity: normal
status: open
title: Add ttk::sp