Skip to content

Commit

Permalink
tb: Typo-Fix changing terminal grid size
Browse files Browse the repository at this point in the history
  • Loading branch information
christianparpart committed Mar 18, 2024
1 parent d6cbb10 commit da3b3a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tb/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ int main(int argc, char const* argv[])

if (requestedTerminalSize != initialTerminalSize)
{
cout << std::format("\033[8;{};{};t", requestedTerminalSize.lines, requestedTerminalSize.columns);
cout << std::format("\033[8;{};{}t", requestedTerminalSize.lines, requestedTerminalSize.columns);
cout.flush();
}

Expand Down

0 comments on commit da3b3a1

Please sign in to comment.