summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2023-11-15 13:06:50 +0100
committerMatthias Melcher <github@matthiasm.com>2023-11-15 13:06:50 +0100
commit36bd2afef56b97729f132f71cc88ebbdaa8705f5 (patch)
treec07b54573ca7cba0725194033785b16b0c9c3103
parentdd8ac4d55755175ead0fa10a958a219d299948ae (diff)
esc character replacement
-rw-r--r--fluid/alignment_panel.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/alignment_panel.cxx b/fluid/alignment_panel.cxx
index 3226e3886..aa8bd228a 100644
--- a/fluid/alignment_panel.cxx
+++ b/fluid/alignment_panel.cxx
@@ -3032,7 +3032,7 @@ Fl_Double_Window *shell_run_window=(Fl_Double_Window *)0;
Fl_Terminal *shell_run_terminal=(Fl_Terminal *)0;
static void cb_Clear(Fl_Button*, void*) {
- shell_run_terminal->append("\e[2J\e[H");
+ shell_run_terminal->append("\033[2J\033[H");
}
Fl_Return_Button *shell_run_button=(Fl_Return_Button *)0;