Skip to content

Commit

Permalink
Code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chrio committed Jul 27, 2021
1 parent 000dd8a commit 0c39e77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TCommandLine.cpp
Expand Up @@ -581,7 +581,7 @@ void TCommandLine::adjustHeight()
lines = 10;
}
int _height = fontH * lines;
if( _height < 31 ) {
if(_height < 31) {
_height = 31; // Minimum usable height taken from buttonLayer in TConsole.cpp
}
if (_height < mpHost->commandLineMinimumHeight) {
Expand Down

0 comments on commit 0c39e77

Please sign in to comment.