diff options
author | George Hazan <george.hazan@gmail.com> | 2025-05-31 19:51:35 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-05-31 19:51:35 +0300 |
commit | 941e4ac612a20cdb2120241b260df759a4ce5720 (patch) | |
tree | 073889fb42d7be720cd6498843597bf54b91fd4e /plugins/MirLua/src/plugin.cpp | |
parent | 651468cb27939d749eebcc3a4c4b34984ea98709 (diff) |
fixes #5041 (MirLua: открытие скрипта двойным кликом по имени файла)
Diffstat (limited to 'plugins/MirLua/src/plugin.cpp')
-rw-r--r-- | plugins/MirLua/src/plugin.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/plugins/MirLua/src/plugin.cpp b/plugins/MirLua/src/plugin.cpp index 11c1f33c42..463851669f 100644 --- a/plugins/MirLua/src/plugin.cpp +++ b/plugins/MirLua/src/plugin.cpp @@ -86,24 +86,6 @@ void CMPlugin::ReloadLuaScripts() /***********************************************/ -int CMPlugin::OnOptionsInit(WPARAM wParam, LPARAM) -{ - OPTIONSDIALOGPAGE odp = {}; - odp.flags = ODPF_BOLDGROUPS | ODPF_UNICODE | ODPF_DONTTRANSLATE; - odp.szGroup.w = LPGENW("Services"); - odp.szTitle.w = L"Lua"; - - odp.szTab.w = LPGENW("Scripts"); - odp.pDialog = new CMLuaOptionsMain(); - g_plugin.addOptions(wParam, &odp); - - odp.szTab.w = LPGENW("Evaluate"); - odp.pDialog = new CMLuaEvaluateOptions(); - g_plugin.addOptions(wParam, &odp); - - return 0; -} - int CMPlugin::OnModulesLoaded(WPARAM, LPARAM) { g_hCLibsFolder = FoldersRegisterCustomPathW(MODULENAME, LPGEN("C Libs Folder"), MIRLUA_PATHT); |