Skip to content

Commit

Permalink
exp: do not set default heights of texture windows
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Dec 1, 2024
1 parent 7c2e05e commit ed4166a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Misc/qs_pak/scripts/expmode_engine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ function expmode.engine.textures()
return expmode.window('Textures', textures_onupdate,
function (self)
self:setconstraints()
self:setsize(imVec2(640, 480))
self:setsize(imVec2(640, 0))
end,
textures_onshow, textures_onhide)
end
Expand All @@ -399,7 +399,7 @@ function expmode.engine.textureviewer()
return expmode.window('Texture Viewer', textureviewer_onupdate,
function (self)
self:setconstraints()
self:setsize(imVec2(640, 480))
self:setsize(imVec2(640, 0))
end,
textureviewer_onshow, textureviewer_onhide)
end
Expand Down

0 comments on commit ed4166a

Please sign in to comment.