mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
22 lines
275 B
Plaintext
22 lines
275 B
Plaintext
|
|
String event = arg("source");
|
|
|
|
log.debug("Event received: " + event);
|
|
|
|
WindowContext context = argObj("windowContext");
|
|
|
|
HashObject windowList = Context.get("windowList");
|
|
|
|
Frame f = windowList.getObject(event);
|
|
|
|
if (f != (Frame)context.get("/"))
|
|
{
|
|
f.toFront();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|