wwiv icon indicating copy to clipboard operation
wwiv copied to clipboard

use custom fonts in syncterm

Open wwiv opened this issue 7 years ago • 1 comments

We can set custom fonts to look better... vert is doing this.

See http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/src/conio/cterm.txt

wwiv avatar Jan 29 '18 20:01 wwiv

From DM... different screen sizes have different px height fonts.. he's what he uses

function charheight(rows)
 {
 	switch(rows) {
 		case 27:
 		case 28:
 		case 42:
 		case 43:
 			return 14;
 	}
 	if(rows <= 30)
 		return 16;
 	return 8;
 }

wwiv avatar Jan 29 '18 20:01 wwiv