Skip to content

Commit

Permalink
Updated: Query store selection operator
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdvideo1234 committed Aug 27, 2024
1 parent 367a28e commit 95e2671
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lua/autorun/trackassembly_init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ local asmlib = trackasmlib; if(not asmlib) then -- Module present
------------ CONFIGURE ASMLIB ------------

asmlib.InitBase("track","assembly")
asmlib.SetOpVar("TOOL_VERSION","8.779")
asmlib.SetOpVar("TOOL_VERSION","8.780")

------------ CONFIGURE GLOBAL INIT OPVARS ------------

Expand Down
4 changes: 2 additions & 2 deletions lua/trackassembly/trackasmlib.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2584,10 +2584,10 @@ function NewTable(sTable,defTab,bDelete,bReload)
end
-- Store built query in command list
function self:Store(vK, sQ)
local qtCmd = self:GetCommand()
if(not IsHere(vK)) then return self end
local qtCmd = self:GetCommand() -- Current query
local mQ, tQ = qtCmd.STMT, GetOpVar("QUERY_STORE")
local sQ = (sQ or (mQ and qtCmd[mQ]) or nil)
local sQ = (sQ or (mQ and qtCmd[mQ] or nil))
LogInstance("Entry "..GetReport(vK, sQ), tabDef.Nick)
tQ[vK] = sQ; return self
end
Expand Down

0 comments on commit 95e2671

Please sign in to comment.