You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this great library, I love how quick and simple it is, I'm having some trouble with the save dialog option:
if (ImGui::MenuItem("Save as...")) {
auto destination = pfd::save_file("Select a scene file", currentScenePath).result();
if (!destination.empty()) Application::getSceneManager().saveScene(destination);
}
The save dialog shows up correctly, but upon clicking "save" it freezes for several seconds. After waiting for a while it becomes active again (meaning you can type and click the buttons). Clicking again save repeats the process (gets frozen).
The same thing happens if you click `cancel instead. The file never gets written/saved
The text was updated successfully, but these errors were encountered:
Thanks for this great library, I love how quick and simple it is, I'm having some trouble with the save dialog option:
The save dialog shows up correctly, but upon clicking "save" it freezes for several seconds. After waiting for a while it becomes active again (meaning you can type and click the buttons). Clicking again
save
repeats the process (gets frozen).The same thing happens if you click `cancel instead. The file never gets written/saved
The text was updated successfully, but these errors were encountered: