sticky next and last buttons for better display
This commit is contained in:
parent
109cd6b052
commit
83151711eb
1 changed files with 2 additions and 2 deletions
4
main.py
4
main.py
|
@ -258,9 +258,9 @@ class GesMag:
|
|||
|
||||
# Boutons
|
||||
precedent = Button(parent, text="Page précédente", command=lambda: __affichageTableau(stockListe, parent, page - 1))
|
||||
precedent.grid(column=0, row=i, columnspan=2)
|
||||
precedent.grid(column=0, row=i, columnspan=2, sticky='w')
|
||||
suivant = Button(parent, text="Page suivante", command=lambda: __affichageTableau(stockListe, parent, page + 1))
|
||||
suivant.grid(column=4, row=i, columnspan=2)
|
||||
suivant.grid(column=4, row=i, columnspan=2, sticky='e')
|
||||
if page == 1: # si on est a la première page on désactive le boutton précédent
|
||||
precedent.config(state="disabled")
|
||||
if page == pageMax: # si on est a la dernière page on désactive le boutton suivant
|
||||
|
|
Reference in a new issue