diff options
author | emkael <emkael@tlen.pl> | 2018-05-22 11:50:40 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2018-07-06 01:23:19 +0200 |
commit | e197341c6f2a234b6c2b266450b8564a9125fcc1 (patch) | |
tree | 8383c0f3029293e4a8f5b19b4087e74cf6d4b058 /jfr_playoff/generator.py | |
parent | b662da599a1cf673790648f5c0c7b6962e529bfa (diff) |
Fixing vertical positioning of match boxes if there's a single match in every phase
Diffstat (limited to 'jfr_playoff/generator.py')
-rw-r--r-- | jfr_playoff/generator.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jfr_playoff/generator.py b/jfr_playoff/generator.py index 6d107bd..22bdc82 100644 --- a/jfr_playoff/generator.py +++ b/jfr_playoff/generator.py @@ -137,7 +137,8 @@ class PlayoffGenerator(object): match_height = canvas_size[1] / len(phase.matches) row_no = 0 for match in phase.matches: - grid_y = int(row_no * match_height + + grid_y = self.page['margin'] / 2 if dimensions[1] == 1 else \ + int(row_no * match_height + 0.5 * (match_height - self.page['height'])) PlayoffLogger.get('generator').info( 'grid box (%d, %d) position: (%d, %d)', |