ocornut / imgui_test_engine

Dear ImGui Automation Engine & Test Suite
386 stars 40 forks source link

Minor issue in "misc_clipper" #15

Closed elect86 closed 1 year ago

elect86 commented 1 year ago
        for (int clipper_step = 0; clipper_step < 2; clipper_step++)
            for (int step = 0; step < step_count; step++)
            {
                vars.ClipperManualItemHeight = (clipper_step == 2);

clipper_step never reaches 2, that means vars.ClipperManualItemHeight is set always to false

ocornut commented 1 year ago

This was indeed a mistake (not all test variants were running) and fixed with 60c9a2f, thank you!