1
0
mirror of synced 2024-11-24 07:40:17 +01:00

web: Make sure settings are loaded correctly

This commit is contained in:
WerWolv 2024-02-18 14:02:21 +01:00
parent 1bf1a56b01
commit 016d47b9d7
2 changed files with 10 additions and 4 deletions

View File

@ -66,6 +66,14 @@ namespace hex {
} else {
s_settings = nlohmann::json::parse(data);
}
for (const auto &[category, rest] : *impl::s_onChangeCallbacks) {
for (const auto &[name, callbacks] : rest) {
for (const auto &[id, callback] : callbacks) {
callback(getSetting(category, name, {}));
}
}
}
}
void store() {

View File

@ -390,10 +390,8 @@ namespace hex::plugin::builtin {
if (outVars.contains(m_name)) {
std::visit(wolv::util::overloaded {
[this](const std::string &) {
},
[this](const std::shared_ptr<pl::ptrn::Pattern> &) {
},
[](const std::string &) {},
[](const std::shared_ptr<pl::ptrn::Pattern> &) {},
[this](auto &&value) {
std::vector<u8> buffer(std::min<size_t>(sizeof(value), 8));
std::memcpy(buffer.data(), &value, buffer.size());