chiliui
chiliui copied to clipboard
a lua-based opengl GUI
There are a number of issues in different projects with the UI not being redrawn properly. Sometimes it's caused by updating a control in a ScrollPanel that's not visible, but...
https://github.com/jk3064/chiliui/blob/master/luaui/chili/chili/controls/scrollpanel.lua#L69 should be changed to `self.scrollPosY = clamp(0, self.contentArea[4] - self.clientArea[4] - 1, self.scrollPosY) ` Without the -1, the new 'maxed out' y value sometimes won't take effect. I haven't...
they will remain highlighted (blue) after selecting another control. quick fix: move self:Invalidate() in function Update() outside of the focus condition. this report is for the old chili version distributed...
scroller will scale down to reflect size of content, however, there seems to be no minimum size so it eventually disappears as content grows. http://imgur.com/3j7Ev1I also seen in this picture:...
and behaves as if the text displayed on the right side was actually on the left side. this is purely cosmetical as far as i can tell. this report is...
It could be useful if chili-widget still worked even when the engine's GUI is hidden. (player pressed F5 or textcommand "hideinterface 1") Chili has Hide/Show functions so that a widget...
With Chili FTL, it seems like option buttons don't update their visual state properly until they have been either scrolled off screen and back on, or the entire menu has...
Create a StackPanel with horizontal orientation and weightedResize. -> only the first child is visible (all children are visible if weightedResize is deactived!) My little bugfix makes weightedResize work for...