Skip to content

Commit

Permalink
Timetable: In Row
Browse files Browse the repository at this point in the history
- display row header after every 10 resources (not after every three)
  • Loading branch information
tomas-muller committed May 29, 2018
1 parent 371b20a commit 41e517e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -108,7 +108,7 @@ public TimetableGrid(FilterInterface filter, final TimetableGridModel model, int

if (displayMode == 0) {
int headerLines = 2;
if ((index % 3) != 0) headerLines = 0;
if ((index % 10) != 0) headerLines = 0;
int nrLines = 0;
int[] dayIndex = new int[7];
int x = 0;
Expand Down

0 comments on commit 41e517e

Please sign in to comment.