use anywhere hotkey so the overlay can be invoked

develop
myk002 2022-11-09 14:37:17 -08:00
parent 9bdc995f20
commit 56cf7e945c
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 3 additions and 1 deletions

@ -88,6 +88,7 @@
#include "PluginManager.h"
#include "VTableInterpose.h"
#include "modules/Gui.h"
#include "modules/Screen.h"
using namespace DFHack;
@ -364,7 +365,8 @@ DFhackCExport command_result plugin_init(color_ostream &out, std::vector <Plugin
PluginCommand(
"overlay",
"Manage onscreen widgets.",
overlay_cmd));
overlay_cmd,
Gui::anywhere_hotkey));
return CR_OK;
}