From 1d7ade062141f90969a0fc10f0ea9ab065c295f3 Mon Sep 17 00:00:00 2001 From: riidefi <34194588+riidefi@users.noreply.github.com> Date: Wed, 20 Jan 2021 23:34:37 -0700 Subject: [PATCH] :bug: Cancel icon was the religious symbol, not an X --- source/frontend/properties/gc/ResizeAction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/frontend/properties/gc/ResizeAction.cpp b/source/frontend/properties/gc/ResizeAction.cpp index 4b3abb091..08e7a22aa 100644 --- a/source/frontend/properties/gc/ResizeAction.cpp +++ b/source/frontend/properties/gc/ResizeAction.cpp @@ -79,7 +79,7 @@ bool ResizeAction::resize_draw(Texture& data, bool* changed) { } ImGui::SameLine(); - if (ImGui::Button((const char*)ICON_FA_CROSS u8" Cancel")) { + if (ImGui::Button((const char*)ICON_FA_TIMES u8" Cancel")) { return false; } return true; @@ -115,7 +115,7 @@ bool ReformatAction::reformat_draw(Texture& data, bool* changed) { } ImGui::SameLine(); - if (ImGui::Button((const char*)ICON_FA_CROSS u8" Cancel")) { + if (ImGui::Button((const char*)ICON_FA_TIMES u8" Cancel")) { return false; }