Skip to content

Commit 75bfb6f

Browse files
committed
Slightly enlarge cardset info window due to text wrap cutoff
1 parent d252733 commit 75bfb6f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pysollib/tile/selectcardset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ def __init__(self, parent, title, cardset, images, **kw):
791791
# bg = top_frame["bg"]
792792
bg = 'white'
793793
text_w = PysolText(frame, bd=1, relief="sunken", wrap="word",
794-
padx=4, width=64, height=8, bg=bg)
794+
padx=4, width=66, height=8, bg=bg)
795795
text_w.grid(row=row, column=0, sticky='nsew')
796796
sb = ttk.Scrollbar(frame)
797797
sb.grid(row=row, column=1, sticky='ns')

pysollib/tk/selectcardset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ def __init__(self, parent, title, cardset, images, **kw):
476476
# bg = top_frame["bg"]
477477
bg = 'white'
478478
text_w = tkinter.Text(frame, bd=1, relief="sunken", wrap="word",
479-
padx=4, width=64, height=16, bg=bg)
479+
padx=4, width=66, height=16, bg=bg)
480480
text_w.grid(row=1, column=0, sticky='nsew')
481481
sb = tkinter.Scrollbar(frame)
482482
sb.grid(row=1, column=1, sticky='ns')

0 commit comments

Comments
 (0)