summaryrefslogtreecommitdiff
path: root/src/bidding_data_gui.py
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-11-11 15:42:03 +0100
committeremkael <emkael@tlen.pl>2016-11-11 15:42:03 +0100
commit54ae26df4f1cbe938eac8cfbfc6442eb2e093b4e (patch)
tree60838e0f8c6dbec60c3ba9126eb8ca62580d01ea /src/bidding_data_gui.py
parent02215d0d7d309b4c4fbaedd542bdbb05589c00a4 (diff)
* enabling manual input in text fields
Diffstat (limited to 'src/bidding_data_gui.py')
-rw-r--r--src/bidding_data_gui.py6
1 files changed, 2 insertions, 4 deletions
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)