Files
HeidiSQL/extra/jheidi/windowMenuEvents.ajl
2008-03-08 10:50:44 +00:00

22 lines
272 B
Plaintext

String who = arg("source");
log.debug("Event received: " + who);
WindowContext context = argObj("windowContext");
HashObject windowList = Context.get("windowList");
Frame f = windowList.getObject(who);
if (f != (Frame)context.get("/"))
{
f.toFront();
}