#674: FLUID: Scrolls shell script terminal to the bottom on every run

This commit is contained in:
Matthias Melcher 2023-12-16 18:53:01 +01:00
parent 5f3bea4614
commit 638e762d3e
1 changed files with 1 additions and 0 deletions

View File

@ -427,6 +427,7 @@ void run_shell_command(const Fl_String &cmd, int flags) {
shell_run_terminal->printf("\033[2J\033[H");
if (flags & Fd_Shell_Command::CLEAR_HISTORY)
shell_run_terminal->printf("\033[3J");
shell_run_terminal->scrollbar->value(0);
shell_run_terminal->printf("\033[0;32m%s\033[0m\n", expanded_cmd.c_str());
shell_run_window->label(expanded_cmd.c_str());