From 7bc62bb2741a5bcf209e64394fac515f40946034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 3 Feb 2022 21:02:21 +0100 Subject: [PATCH] sceneconverter: fix compact output for --info-images. Sigh, I really need Utility::System::exec() with output redirection to regression-test the utilities, this isn't good. --- src/Magnum/SceneTools/sceneconverter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/SceneTools/sceneconverter.cpp b/src/Magnum/SceneTools/sceneconverter.cpp index 2c1ac9f9a..f4dbbb27f 100644 --- a/src/Magnum/SceneTools/sceneconverter.cpp +++ b/src/Magnum/SceneTools/sceneconverter.cpp @@ -711,7 +711,7 @@ used.)") /* In case the images have all just a single level and no names, write them in a compact way without listing levels. */ - bool compactImages = false; + bool compactImages = true; Containers::Array imageInfos; if(args.isSet("info") || args.isSet("info-images")) { imageInfos = Trade::Implementation::imageInfo(*importer, error, compactImages, importTime);