ui/ux: hexeditor -> hex_editor, Improved performance and flickering when highlighting bytes

This commit is contained in:
WerWolv
2022-02-06 21:02:31 +01:00
parent decfad5c99
commit b3728ae658
12 changed files with 417 additions and 415 deletions

View File

@@ -104,7 +104,7 @@ namespace hex::plugin::builtin {
// Save file as
ImGui::Disabled([&provider] {
if (ImGui::ToolBarButton(ICON_VS_SAVE_AS, ImGui::GetCustomColorVec4(ImGuiCustomCol_ToolbarBlue)))
hex::openFileBrowser("hex.builtin.view.hexeditor.save_as"_lang, DialogMode::Save, {}, [&provider](auto path) {
hex::openFileBrowser("hex.builtin.view.hex_editor.save_as"_lang, DialogMode::Save, {}, [&provider](auto path) {
provider->saveAs(path);
});
},