Closed
Description
I'm having trouble with the following bit of code:
for (int& digit : digits) {
ImGui::InputInt("int", &digit);
}
The elements following the first don't seem to work correctly (won't increase/decrease unless the button is held) if they are given the same label. Are the labels supposed to be unique?
Activity