Skip to content

Commit

Permalink
Increase limit on maximum font size
Browse files Browse the repository at this point in the history
  • Loading branch information
David Kinder committed May 11, 2015
1 parent ef4c302 commit bc6f9e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Win/FrotzApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1348,9 +1348,9 @@ void FrotzApp::OnViewOptions()
int fontSize = 0;
sscanf(display.m_fontSize,"%d",&fontSize);
if (fontSize < 8)
fontSize = 8;
if (fontSize > 28)
fontSize = 28;
fontSize = 6;
if (fontSize > 100)
fontSize = 100;

// Check if the font settings have changed
bool fontUpdate = false;
Expand Down
1 change: 1 addition & 0 deletions Win/help/revision.htm
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ <h1>Revision History</h1>

<b>1.19</b>
<ul>
<li>Font sizes larger than 28 points can now be selected in the options dialog.
<li>The implementation of the <b>print_table</b> opcode now behaves sensibly when called for
the lower window: the contents of the table are printed to the lower window with a carriage
return after every row in the table except the last.
Expand Down

0 comments on commit bc6f9e7

Please sign in to comment.