Skip to content

Commit

Permalink
🐛 Cancel icon was the religious symbol, not an X
Browse files Browse the repository at this point in the history
  • Loading branch information
riidefi committed Jan 21, 2021
1 parent f8ee1e0 commit 1d7ade0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/frontend/properties/gc/ResizeAction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}

Expand Down

0 comments on commit 1d7ade0

Please sign in to comment.