Skip to content
Snippets Groups Projects
Commit 9dd412e1 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Fixed bug that avoided drum saving

parent 1ab8dfcc
No related branches found
No related tags found
No related merge requests found
......@@ -240,14 +240,16 @@ int main(int argc, char** argv) {
ImGui::Text(text.c_str());
char input_text2[256];
ImGui::InputText("Metadata File ", input_text2, IM_ARRAYSIZE(input_text2));
if (ImGui::Button("Save")) {
if (ImGui::Button("Save2")) {
std::string path = METADATA_PATH + std::string(input_text2);
MetadataManager::save(path, bottom_drums.name());
}
ImGui::SameLine();
if (ImGui::Button("Load")) {
if (ImGui::Button("Load2")) {
std::string path = METADATA_PATH + std::string(input_text2);
MetadataManager::load(path, bottom_drums.name());
//push data to GPU
bottom_drums.setAllObjectStates(MetadataManager::getLayerData(bottom_drums.name()));
}
ImGui::End();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment