Debugging

This commit is contained in:
2023-01-26 11:11:04 +01:00
parent 557ee221d5
commit 4fa2a3ad9a
2 changed files with 9 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
from os import path, walk
from tkinter import NSEW, ttk
from tkinter import E, NSEW, W, ttk
import xmltodict
from ttkthemes import ThemedTk
@@ -21,6 +21,9 @@ class FrameSaves(ScrollableFrame):
self.saves = saves
self.saves_local = []
# self["borderwidth"] = 1
# self["relief"] = "solid"
for subdir, dirs, files in walk(configGet("saves_location")):
try:
for dir in dirs:
@@ -66,7 +69,7 @@ class FrameSaves(ScrollableFrame):
for save in self.saves:
save_frame = FrameSave(self, save_dict=save)
save_frame.grid(column=0, row=i, pady=9, padx=9, sticky=NSEW)
save_frame.grid(column=0, row=i, pady=9, padx=9, sticky=W+E)
i += 1