From 54ae26df4f1cbe938eac8cfbfc6442eb2e093b4e Mon Sep 17 00:00:00 2001 From: emkael Date: Fri, 11 Nov 2016 15:42:03 +0100 Subject: * enabling manual input in text fields --- bundle/bidding_data-1.1-gui.zip | Bin 14137084 -> 14137107 bytes bundle/bidding_data-1.1.zip | Bin 13561444 -> 13561444 bytes src/bidding_data_gui.py | 6 ++---- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/bundle/bidding_data-1.1-gui.zip b/bundle/bidding_data-1.1-gui.zip index 00ba616..2f982f1 100644 Binary files a/bundle/bidding_data-1.1-gui.zip and b/bundle/bidding_data-1.1-gui.zip differ diff --git a/bundle/bidding_data-1.1.zip b/bundle/bidding_data-1.1.zip index b0122d2..49a5cb5 100644 Binary files a/bundle/bidding_data-1.1.zip and b/bundle/bidding_data-1.1.zip differ diff --git a/src/bidding_data_gui.py b/src/bidding_data_gui.py index 04ceabb..a942db5 100644 --- a/src/bidding_data_gui.py +++ b/src/bidding_data_gui.py @@ -283,8 +283,7 @@ class BiddingGUI(tk.Frame): self, text='Plik turnieju:') # text field for tournament file path tour_entry = tk.Entry( - self, state=tk.DISABLED, - textvariable=self.__variables['tour_filename']) + self, textvariable=self.__variables['tour_filename']) # tournament selection button tour_select_btn = tk.Button( self, text='Szukaj', command=self.tour_select) @@ -298,8 +297,7 @@ class BiddingGUI(tk.Frame): self, text='BWS:') # text field for BWS file path bws_entry = tk.Entry( - self, state=tk.DISABLED, - textvariable=self.__variables['bws_filename']) + self, textvariable=self.__variables['bws_filename']) # BWS selection button bws_select_btn = tk.Button( self, text='Szukaj', command=self.bws_select) -- cgit v1.2.3