Dear all,
I'm currently meeting a problem with Imgui.
To explain shortly : i'm drawing an array (like an Excel array) with something like :
for line=1,10 do
gh_imgui.columns(10,1)
for col=1,10 do
gh_imgui.button("button",20,20)
gh_imgui.column_next()
end
end
With that method, if the array is horizontally larger than the current window, the buttons are automatically resized so that they fit in the window.
Which is weird because if it's bigger than the vertical size of the window, then it calls the scrollbar to go up/down.
I'd like to call a scrollbar like this, but horizontally. Do you think it would be possible with any GeexLab function ?
Thanking you in advance
Regards
Stakov