diff options
author | emkael <emkael@tlen.pl> | 2019-06-07 01:47:33 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2019-06-07 01:47:33 +0200 |
commit | 1bccad0ea63ef7ce82996eb31cd09781cfcc154e (patch) | |
tree | d754478eb65e93be5dbb2adec354ef288b71b5ce /jfr_playoff/gui/tabs.py | |
parent | 7e3a4c67e73ab5929362deeb00de09185d741d46 (diff) |
Swiss configuration GUI
Diffstat (limited to 'jfr_playoff/gui/tabs.py')
-rw-r--r-- | jfr_playoff/gui/tabs.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/jfr_playoff/gui/tabs.py b/jfr_playoff/gui/tabs.py index ef3b407..3bace44 100644 --- a/jfr_playoff/gui/tabs.py +++ b/jfr_playoff/gui/tabs.py @@ -8,6 +8,7 @@ import tkFileDialog as tkfd import tkMessageBox as tkmb from .frames import getIntVal +from .frames.match import * from .frames.network import * from .frames.team import * from .frames.translations import * @@ -168,6 +169,10 @@ class SwissesTab(PlayoffTab): def title(self): return 'Swissy' + def renderContent(self, container): + self.swisses = SwissesFrame(container, vertical=True) + self.swisses.pack(side=tk.TOP, fill=tk.BOTH, expand=True) + class NetworkTab(PlayoffTab): @property def title(self): |