This commit is contained in:
kremsy 2014-02-21 22:50:17 +01:00 committed by Steffen Schröder
parent 30606d723b
commit 5371b8b17d
2 changed files with 5 additions and 1 deletions

View File

@ -342,7 +342,7 @@ class Dedimania implements CallbackListener, TimerListener, Plugin {
} }
} }
} }
}, $content, false); //TODO compression }, $content, true); //TODO compression
} }
/** /**

View File

@ -322,6 +322,10 @@ class LocalRecordsPlugin implements CallbackListener, TimerListener, Plugin {
// Times // Times
foreach ($records as $index => $record) { foreach ($records as $index => $record) {
if ($index >= $lines) {
break;
}
$y = -8. - $index * $lineHeight; $y = -8. - $index * $lineHeight;
$recordFrame = new Frame(); $recordFrame = new Frame();