From ef0899445f0578bee0a13470bf75f20b13a95493 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 23 May 2022 11:16:11 +0100 Subject: [PATCH] Polyhedron_3: Fix saving a polyline as part of a scene --- Polyhedron/demo/Polyhedron/Plugins/IO/Polylines_io_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polyhedron/demo/Polyhedron/Plugins/IO/Polylines_io_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/IO/Polylines_io_plugin.cpp index a405be72fe9..4063d2107ed 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/IO/Polylines_io_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/IO/Polylines_io_plugin.cpp @@ -62,7 +62,7 @@ public: } QString name() const override{ return "polylines_io_plugin"; } - QString nameFilters() const override{ return "Polylines files (*.polylines.txt *.cgal)"; } + QString nameFilters() const override{ return "Polylines files (*.polylines.txt);; CGAL Polylines files (*.cgal)"; } bool canLoad(QFileInfo fileinfo) const override; QList load(QFileInfo fileinfo, bool& ok, bool add_to_scene=true) override;