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

expand_y breaks Push()

Abierto
#85 1 comentario 0 reacciones 0 asignados Ver en GitHub

Nadie ha tomado este issue todavía.

Evaluación

Dificultad
3/5
Tiempo estimado
1-2 días
Aptitud para principiantes
42/100
Tipo de issue
Error
Claridad
Bastante claro
Estado de actividad
Estancado
Stack tecnológico
python
Área
desktop

Línea de trabajo

Start by running the supplied Python sample on FreeSimpleGUI 5.2.0.post1 and inspect the Push() and Column() layout behavior when both columns use expand_y=True. Verify whether the columns can remain vertically expanded while Push() separates them horizontally; done means the fruit column is left-aligned, the cards column is right-aligned, and both fill the window height.

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

Descripción

FreeSimpleGUI version 5.2.0.post1
Python version 3.10.12 on Ubuntu 22.04

I have had difficulty making the Push() function work as the documentation describes. The following code shows the issue. The intent is to have two columns, one containing a Listbox of fruit justified to the left edge of the window and the other containing a Listbox of playing cards justified to the right edge of the window.

When both columns have expand_y = True, the resulting GUI has both columns justified to the left despite having a Push() between them in the window layout. If I comment out the expand_y = True line from the Cards Column (just below the line # This breaks Push()), then suddenly the Push() works and the Cards Column is justified to the right edge. Of course, it is no longer extended vertically the way I want it.

Sample code:

import FreeSimpleGUI as sg

default_font = ("Arial", 16)

### FRUIT COLUMN ###
fruit_header = sg.Text('Fruit', justification = 'center', expand_x = True)
fruit_listbox = sg.Listbox(values = ['apple', 'banana', 'clementine', 'durian'],
                           key = '-FRUIT-', size = (40, None) )

fruit_column = sg.Column( [ [fruit_header], [fruit_listbox] ],
                          expand_y=True,
                          background_color = 'orange')

### CARDS COLUMN ###
cards_header = sg.Text('Cards', justification = 'center', expand_x = True)
cards_listbox = sg.Listbox(values = ['King', 'Queen', 'Eight', 'Joker'],
                           key = '-CARDS-', size = (40, None) )

cards_column = sg.Column( [ [cards_header], [cards_listbox] ],
                          # This breaks Push()
                          expand_y = True,
                          background_color = 'purple')

layout = [ [fruit_column, sg.Push(), cards_column] ]

# Create the Window
window = sg.Window('Justification Test', layout, resizable=True, finalize=True,
                   size=sg.Window.get_screen_size(), location=(0,0),
                   font = default_font)

window.bind('<Escape>', '-ESCAPE-')

# Event Loop to process "events" and get the "values" of the inputs
while True:

    event, values = window.read()
    if event in (sg.WIN_CLOSED, '-ESCAPE-'):
        break

window.close()

Is there a way to have both columns extend the entire height of the window while also being justified to opposite edges horizontally?

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.