Fixed lookups not working unless stats window had been opened at least once

merge-requests/201/merge
Tag 2022-10-01 15:53:00 -07:00
rodzic 5d7f214948
commit 119bf4cf77
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -8632,7 +8632,7 @@ function lookupValidateCallByElement(elementString)
{
if (
g_lookupWindowHandle != null &&
typeof g_statsWindowHandle.window.validateCallByElement !== "undefined"
typeof g_lookupWindowHandle.window.validateCallByElement !== "undefined"
)
{
g_lookupWindowHandle.window.validateCallByElement(elementString);
@ -8642,7 +8642,7 @@ function lookupFocus(selection)
{
if (
g_lookupWindowHandle != null &&
typeof g_statsWindowHandle.window.statsFocus !== "undefined"
typeof g_lookupWindowHandle.window.statsFocus !== "undefined"
)
{
g_lookupWindowHandle.window.statsFocus(selection);