Skip to content
Snippets Groups Projects
Commit 2fa5376e authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Don't disable blink when 'wantblink=true' in a section.

Previously, if a blink or high-blink font was specified in a font section
it was assumed that you did not want the terminal to actually blink the glyphs
displayed with that/those fonts. In some cases, blink may be preferable, so
if wantblink=true, then leave blink enabled on the terminal for blink/
high-blink fonts.
parent 4187844e
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ function fonts(key) ...@@ -34,7 +34,7 @@ function fonts(key)
if(parseInt(p, 10) || slotnames[p]) { // load if(parseInt(p, 10) || slotnames[p]) { // load
load_font(slotnames[p] ? slotnames[p] : p, obj[p]); load_font(slotnames[p] ? slotnames[p] : p, obj[p]);
} else { // activate } else { // activate
if(p == 'requirements') if(p == 'requirements' || p =='wantblink')
continue; continue;
var slotval = slotnames[obj[p]]; var slotval = slotnames[obj[p]];
var slotnum = parseInt(slotval, 10); var slotnum = parseInt(slotval, 10);
...@@ -51,7 +51,7 @@ function fonts(key) ...@@ -51,7 +51,7 @@ function fonts(key)
filename = obj[p] + '.f' + charheight; filename = obj[p] + '.f' + charheight;
load_font(slotnum, filename); load_font(slotnum, filename);
} }
if(cterm.activate_font(cterm.font_styles[p], slotval == undefined ? obj[p] : slotnum) == false) if(cterm.activate_font(cterm.font_styles[p], slotval == undefined ? obj[p] : slotnum, obj.wantblink) == false)
log(LOG_WARNING, "Failed to activate font: " + cterm.font_styles[p]); log(LOG_WARNING, "Failed to activate font: " + cterm.font_styles[p]);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment