Skip to content

Commit 3bbbf8b

Browse files
committed
Fixed issue where zooming in the message menu too much would hide the bottom menu
This was already fixed for the lyrics menu, but not for the message menu.
1 parent 63604e5 commit 3bbbf8b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/gui.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,8 @@ def __init__(self, *args, **kwargs):
160160

161161
self.label = LyricLabel(master=self, index=-1, lyric="", anchor=CENTER, justify=CENTER, bootstyle=DEFAULT, font=(FONT_BOLD, int(self.font_size*1.5)))
162162
self.label.pack(side=TOP, fill=BOTH, expand=YES, padx=200)
163+
164+
self.pack_propagate(False)
163165

164166
def display_message(self, message):
165167
self.label._label.config(text=message)

0 commit comments

Comments
 (0)