Skip to content

Commit

Permalink
Fix for uncollapse button not closing
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtificialQualia committed May 14, 2020
1 parent 7f98cb8 commit 3645163
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PyEveLiveDPS/collapseWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
from peld import settings


class UncollapseWindow(tk.Tk):
class UncollapseWindow(tk.Toplevel):
def __init__(self, mainWindow):
tk.Tk.__init__(self)
tk.Toplevel.__init__(self)
self.minsize(5,5)
self.overrideredirect(True)
self.wm_attributes("-topmost", True)
Expand Down

0 comments on commit 3645163

Please sign in to comment.