From 666f491224e8e963a0f7804aa908aaee835fb1bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Wed, 28 Feb 2024 21:50:37 +0100 Subject: [PATCH] Show the DEM tiles in the same color --- src/common/dem.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/dem.cpp b/src/common/dem.cpp index 6cc8f644..d0e80b4f 100644 --- a/src/common/dem.cpp +++ b/src/common/dem.cpp @@ -170,6 +170,8 @@ QList DEM::tiles() area.setName(basename); area.setDescription(files.at(i).suffix().toUpper() + ", " + l.formattedDataSize(files.at(i).size())); + area.setStyle(PolygonStyle(QColor(0xFF, 0, 0, 0x40), + QColor(0xFF, 0, 0, 0x80), 2)); list.append(area); }