Prabu Natarajan
Prabu Natarajan
changing a line worked for me. this line: $scope.onSelectAll(); to this: $timeout( function() { $scope.onSelectAll(); }, 0 );
code to recreate the issue: ```cpp if (ImGui::BeginTable("Test", 1, ImGuiTableFlags_Resizable | ImGuiTableFlags_NoSavedSettings | ImGuiTableFlags_Borders | ImGuiTableFlags_ScrollY)) { static bool selected[100] = {}; ImGui::TableSetupScrollFreeze(0, 1); ImGui::TableSetupColumn("Test Column", ImGuiTableColumnFlags_None); ImGui::TableHeadersRow(); for (int...
I faced the same issue with a cmake+vcpkg project, It worked fine after downgrading to version 1.9.3 vcpkg.json: { "name": "app", "version-string": "1.0.0", "dependencies": [ { "name": "nlohmann-json" }, {...