From d20f4a5c83d3bedb03038cbbb15487aaf56e3b6c Mon Sep 17 00:00:00 2001 From: GriffinR Date: Fri, 10 Jul 2020 00:51:21 -0400 Subject: [PATCH] Fix metatile selection rect disappearing during map selection --- src/ui/metatileselector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/metatileselector.cpp b/src/ui/metatileselector.cpp index e95ae854..ecd0fddf 100644 --- a/src/ui/metatileselector.cpp +++ b/src/ui/metatileselector.cpp @@ -41,7 +41,7 @@ void MetatileSelector::draw() { painter.end(); this->setPixmap(QPixmap::fromImage(image)); - if (!this->externalSelection) { + if (!this->externalSelection || (this->externalSelectionWidth == 1 && this->externalSelectionHeight == 1)) { this->drawSelection(); } }