Skip to content

Commit 46eca3b

Browse files
committed
Update firmware
1 parent e191baf commit 46eca3b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ext/firmware

Submodule firmware updated 76 files

src/ui/ui_console.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ void ui_console_draw(ui_console_t* win) {
9494
// TODO: display items starting from the bottom
9595

9696
if (ImGui::SmallButton("Clear")) {
97-
term_state_clear(&term_96);
97+
term_out_RIS(&term_96);
9898
}
9999
ImGui::SameLine();
100100
bool copy_to_clipboard = ImGui::SmallButton("Copy");
@@ -103,7 +103,7 @@ void ui_console_draw(ui_console_t* win) {
103103

104104
if (ImGui::BeginChild("ScrollingRegion", ImVec2(), 0, ImGuiWindowFlags_HorizontalScrollbar)) {
105105
if (ImGui::BeginPopupContextWindow()) {
106-
if (ImGui::Selectable("Clear")) term_state_clear(&term_96);
106+
if (ImGui::Selectable("Clear")) term_out_RIS(&term_96);
107107
ImGui::EndPopup();
108108
}
109109

0 commit comments

Comments
 (0)