Skip to content

Commit bb79b6d

Browse files
committed
Use default theme and comment out printing available themes
1 parent c7ce1e3 commit bb79b6d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

code/pdf_split.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,12 @@ def press(button):
9393
else:
9494
app.stop()
9595

96+
9697
# Create the GUI Window
9798
app = gui("PDF Splitter", useTtk=True)
98-
app.setTtkTheme("clam")
99-
print(app.getTtkThemes())
99+
app.setTtkTheme("default")
100+
# Uncomment below to see all available themes
101+
# print(app.getTtkThemes())
100102
app.setSize(500, 200)
101103

102104
# Add the interactive components

0 commit comments

Comments
 (0)