mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-29 00:10:02 -05:00
impr: Display background scripts in about page
This commit is contained in:
@@ -262,13 +262,15 @@ namespace hex::script::loader {
|
||||
continue;
|
||||
|
||||
if (m_methodExists("Main", scriptPath)) {
|
||||
this->addScript(entry.path().stem().string(), [this, scriptPath] {
|
||||
this->addScript(entry.path().stem().string(), false, [this, scriptPath] {
|
||||
hex::unused(m_runMethod("Main", false, scriptPath));
|
||||
});
|
||||
}
|
||||
|
||||
if (m_methodExists("OnLoad", scriptPath)) {
|
||||
hex::unused(m_runMethod("OnLoad", true, scriptPath));
|
||||
this->addScript(entry.path().stem().string(), true, [this, scriptPath] {
|
||||
hex::unused(m_runMethod("OnLoad", true, scriptPath));
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user