implement cubes exporter for web viewer

This commit is contained in:
2018-06-09 01:39:58 +02:00
parent 376c6097d2
commit fb528f87de
11 changed files with 101 additions and 7 deletions

View File

@@ -258,6 +258,14 @@ void App::dialog_export()
}
}
void App::dialog_export_cubes()
{
if (canvas)
{
canvas->m_canvas->export_cubes(data_path + "/" + doc_name);
}
}
void App::dialog_layer_rename()
{
auto dialog = std::make_shared<NodeDialogLayerRename>();