fix: Extended ASCII display being enabled by default

This commit is contained in:
WerWolv 2025-12-12 13:14:49 +01:00
parent 82e168c438
commit 21e61bfce6
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ namespace hex::plugin::builtin {
}); });
ContentRegistry::Settings::onChange("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.show_extended_ascii", [this](const ContentRegistry::Settings::SettingsValue &value) { ContentRegistry::Settings::onChange("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.show_extended_ascii", [this](const ContentRegistry::Settings::SettingsValue &value) {
m_hexEditor.enableShowExtendedAscii(value.get<bool>(true)); m_hexEditor.enableShowExtendedAscii(value.get<bool>(false));
}); });
ContentRegistry::Settings::onChange("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.minimap", [this](const ContentRegistry::Settings::SettingsValue &value) { ContentRegistry::Settings::onChange("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.minimap", [this](const ContentRegistry::Settings::SettingsValue &value) {