summaryrefslogtreecommitdiff
path: root/jfr_playoff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2019-06-06 19:08:34 +0200
committeremkael <emkael@tlen.pl>2019-06-06 19:08:34 +0200
commitc5c3860551ee8e87603a2f41a0fd08dde64c900f (patch)
tree6d13cb8b281dd2fea078b53fec88575610b0bc2f /jfr_playoff
parentecd001bd1e803bfc5971fcd21be11c1ad851c8da (diff)
Positioning of "save" button within team selection dialog
Diffstat (limited to 'jfr_playoff')
-rw-r--r--jfr_playoff/gui/frames/team.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jfr_playoff/gui/frames/team.py b/jfr_playoff/gui/frames/team.py
index 23c1ada..e316cec 100644
--- a/jfr_playoff/gui/frames/team.py
+++ b/jfr_playoff/gui/frames/team.py
@@ -62,7 +62,7 @@ class TeamSelectionFrame(ScrollableFrame):
self.selected = selected
self.callback = callback
ScrollableFrame.__init__(self, master=master, *args, **kwargs)
- (ttk.Button(self, text='Zapisz', command=self._save)).pack(
+ (ttk.Button(master, text='Zapisz', command=self._save)).pack(
side=tk.BOTTOM, fill=tk.Y)
def _save(self):