Hacktoberfest 2026: los issues que los mantenedores marcaron para octubre, abiertos y aptos para principiantes. Explorar issues de Hacktoberfest

Bug Found from PySimpleGUI spin element

Abierto
#41 0 comentarios 0 reacciones 0 asignados Ver en GitHub

Nadie ha tomado este issue todavía.

Evaluación

Dificultad
2/5
Tiempo estimado
1-3 horas
Aptitud para principiantes
55/100
Tipo de issue
Error
Claridad
Bien especificado
Estado de actividad
Estancado
Stack tecnológico
python
Área
desktop

Línea de trabajo

Start in the main init.py file at the Spin element's ChangeSubmits handling, then inspect _SpinboxSelectHandler and _SpinChangedHandler. Reproduce the issue by holding a spin arrow and releasing it; done means the final value is captured and the corresponding event is fired without another click.

Escrito por el modelo de indexación a partir del texto del issue.

Descripción

Windows 10
FreeSimpleGUI / PySimpleGUI

The issue is with the sg.Spin element when holding down either up or down arrows buttons continuously.
When you release the mouse button or , the final value would of not been captured internally unless i suppose you do an additional write_event_value or whatever.

sg.Spin(
    values=[i for i in range(21)], 
    size=(2, 1), 
    font="Arial 9", 
    background_color=bgc, 
    enable_events=True, 
    readonly=True, 
    k="Lockout", 
    p=((8, 0), (30, 0))
)

in my code im busy with i cannot click additional time to get the final value using element.get()

So here if i start the default value as 5 and then hold down mouse button on the up arrow button in the spinbox.
When it reaches 20 and i let go the mouse button, i dont get the value 20 from call element.get() and infact while holding down the mouse button there are no more events fired for the spinbox.

They guys from PySimpleGUI actually had the correct code but then messed it up.

In the main __init__.py file find under element spin

if element.ChangeSubmits:
    element.TKSpinBox.configure(command=element._SpinboxSelectHandler)   -----   This needs to be commented out
    # element.TKSpinBox.bind('<ButtonRelease-1>', element._SpinChangedHandler) --- enable this again but use _SpinboxSelectHandler
    # element.TKSpinBox.bind('<Up>', element._SpinChangedHandler) --- leave as is
    # element.TKSpinBox.bind('<Down>', element._SpinChangedHandler) ---- leave as is

For me doing this fixed the spinbox.

Also this internal method _SpinChangedHandler from the class Spin is pointless at the moment as it does not get called anywhere because they changed to using _SpinboxSelectHandler.

Lenguaje dominante
Python
Estrellas
867
Forks
106
Merge medio
1 min
PR fusionados (30 d)
2

Guía de contribución

No hay ninguna guía de contribución indexada para este repositorio

Primeros pasos

  1. Lee el issue completo y luego la guía de contribución del proyecto.
  2. Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
  3. Haz un fork del repositorio y trabaja en una rama.
  4. Abre un pull request que haga referencia al número del issue.

Más de spyoungtech/FreeSimpleGUI

Todos los issues de spyoungtech/FreeSimpleGUI

Issues similares

Más issues de Python

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.