From 33c4dc33478bc6991872ff8742b7d8f97b84a8e9 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Thu, 25 Dec 2025 19:59:57 +0100 Subject: [PATCH] impr: Use settings icon as everywhere else for hex editor settings --- plugins/ui/source/ui/hex_editor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/ui/source/ui/hex_editor.cpp b/plugins/ui/source/ui/hex_editor.cpp index bb185e504..cc2cb0a73 100644 --- a/plugins/ui/source/ui/hex_editor.cpp +++ b/plugins/ui/source/ui/hex_editor.cpp @@ -1190,10 +1190,10 @@ namespace hex::ui { drawMinimapPopup(); - ImGui::SameLine(0, 1_scaled); + ImGui::SameLine(); // Data Cell configuration - if (ImGuiExt::DimmedIconButton(ICON_VS_TABLE, ImGui::GetStyleColorVec4(ImGuiCol_Text))) { + if (ImGuiExt::DimmedIconButton(ICON_VS_SETTINGS_GEAR, ImGui::GetStyleColorVec4(ImGuiCol_Text))) { ImGui::OpenPopup("DataCellOptions"); } ImGuiExt::InfoTooltip("hex.ui.hex_editor.data_cell_options"_lang);