Skip to content

Commit

Permalink
Pebble Time Round Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Wowfunhappy committed Sep 14, 2019
1 parent d23493e commit 92941fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,11 @@ function makePages(content) {
else {
if (paragraphNum === 0) {
// On the round, make first page only include title and author on first page.
pages = processParagraphs(pages, 0, 0, paragraphs[paragraphNum]);
pages = processParagraphs(pages, 72, 0, paragraphs[paragraphNum]);
}
else {
// Time round cannot display as many characters.
pages = processParagraphs(pages, 65, 0, paragraphs[paragraphNum]);
pages = processParagraphs(pages, 72, 0, paragraphs[paragraphNum]);
}
}
}
Expand Down

0 comments on commit 92941fc

Please sign in to comment.