Skip to content

Commit

Permalink
No more themes
Browse files Browse the repository at this point in the history
  • Loading branch information
Claydough6 committed May 5, 2021
1 parent ee5c9a1 commit a0a46d4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
ttkthemes
pyprover
3 changes: 1 addition & 2 deletions resolution_gui/gui_main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from tkinter import *
from tkinter import ttk
from ttkthemes import ThemedTk
from tkinter import filedialog

from resolution_canvas import ResolutionCanvas
Expand All @@ -18,7 +17,7 @@ def __init__(self):
self.selected_clause_id = None

# create the root window
self.root = ThemedTk()
self.root = Tk()
self.root.title("Graphical Resolution " + str(self.__version__))
self.root.option_add('*tearOff', FALSE) # so the menu doesn't tear

Expand Down

0 comments on commit a0a46d4

Please sign in to comment.