Heyo,
Looks like the ProgressBar widget in ImGUI does not display its label!
Here I would expect Where am I? to be written next to the widget.
Am I missing something?
Cheers!
Heyo,
Looks like the ProgressBar widget in ImGUI does not display its label!
Here I would expect Where am I? to be written next to the widget.
Am I missing something?
Cheers!
Hi Sebescudie,
the Label pin was wrongly introduced for the node, ImGui’s ProgressBar doesn’t have any label. If you need one, just use SameLine
and Text
widgets after the ProgressBar.
Fixed in the upcoming (>= 6.7-226).
Best,
Anton
I see! Thanks for the heads up!