setTextSize method

void setTextSize(
  1. TerminalTextSize next
)

Sets and persists the text size next.

Implementation

void setTextSize(TerminalTextSize next) {
  textSize.value = next;
  _settings.terminalTextSize = next.name;
}