mirror of https://github.com/WerWolv/ImHex
fix: Extended ASCII display being enabled by default
(cherry picked from commit 21e61bfce6)
This commit is contained in:
parent
516a2f119e
commit
c95cbc5933
|
|
@ -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) {
|
||||
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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue