-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
node.c: Default terminal size to 80x24.
The default terminal size is 80 x 24, but this is left zero-initialized, which means that dial-in clients were only shown a single column in menus, even though their terminal is probably 80 x 24. Previously, this was left as 0 x 0 to distinguish an explicit size from the default; for ease of use, this is changed to 80 x 24 by default, and we use a separate flag (node->dimensions) to keep track of having received explicit dimensions.
- Loading branch information
1 parent
af76ae0
commit ad51c01
Showing
3 changed files
with
14 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters