This commit is contained in:
Simon Lamon
2021-12-21 19:29:18 +00:00
parent ccca58bb95
commit 625df61489
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -37,6 +37,7 @@ export class Terminal implements ITerminalApi {
set: (target, propName: string, value): any => {
this._checkReadonlyOptions(propName);
target[propName] = value;
return true;
}
});
}
+1 -1
View File
@@ -131,7 +131,7 @@ export class OptionsService implements IOptionsService {
break;
case 'cursorWidth':
value = Math.floor(value);
// Fall through for bounds check
// Fall through for bounds check
case 'lineHeight':
case 'tabStopWidth':
if (value < 1) {