Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Jan 25, 2024
1 parent 122e7fe commit ff9d08b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Misc/qs_pak/scripts/qimgui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ local float <const> = edicts.valuetypes.float

local function edictinfo_onupdate(self)
local title = self.title
local visible, opened = imgui.Begin(title, true)
local visible, opened = imgui.Begin(title, true, imgui.constant.WindowFlags.NoSavedSettings)

if visible and opened then
local tableflags = imgui.constant.TableFlags
Expand Down Expand Up @@ -282,7 +282,7 @@ local function edicts_onupdate(self)
imgui.TableSetColumnIndex(0)
imgui.Text(index)
imgui.TableSetColumnIndex(1)
if cellfunc(entry.description) then
if cellfunc(entry.description .. '##' .. row) then
qimgui.edictinfo(entry.edict)
end
imgui.TableSetColumnIndex(2)
Expand Down

0 comments on commit ff9d08b

Please sign in to comment.