xd
This commit is contained in:
parent
a1f2410294
commit
a251690af1
1 changed files with 3 additions and 3 deletions
|
@ -142,9 +142,9 @@ class GUI:
|
|||
text="< Page précédente",
|
||||
command=lambda: print("avant"),
|
||||
).grid(column=0, row=idx)
|
||||
Label(
|
||||
self.f, text=f"Page {num_page}/{round(len(errors) / elem_per_page)}"
|
||||
).grid(column=1, row=idx)
|
||||
Label(self.f, text=f"Page {num_page}/{1 + len(errors) // elem_per_page}").grid(
|
||||
column=1, row=idx
|
||||
)
|
||||
Button(
|
||||
self.f,
|
||||
text="Page suivante >",
|
||||
|
|
Reference in a new issue