summaryrefslogtreecommitdiff
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
parent02215d0d7d309b4c4fbaedd542bdbb05589c00a4 (diff)
* enabling manual input in text fields
-rw-r--r--bundle/bidding_data-1.1-gui.zipbin14137084 -> 14137107 bytes
-rw-r--r--bundle/bidding_data-1.1.zipbin13561444 -> 13561444 bytes
-rw-r--r--src/bidding_data_gui.py6
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
--- a/bundle/bidding_data-1.1-gui.zip
+++ b/bundle/bidding_data-1.1-gui.zip
Binary files differ
diff --git a/bundle/bidding_data-1.1.zip b/bundle/bidding_data-1.1.zip
index b0122d2..49a5cb5 100644
--- a/bundle/bidding_data-1.1.zip
+++ b/bundle/bidding_data-1.1.zip
Binary files 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)