From 51b57f9222f38d33d197c1aab6efac107d3640fd Mon Sep 17 00:00:00 2001 From: GriffinR Date: Sat, 18 Feb 2023 01:21:08 -0500 Subject: [PATCH] Fix map border layering above connections after map switch --- src/editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor.cpp b/src/editor.cpp index 3f5b2e1a..c3d98936 100644 --- a/src/editor.cpp +++ b/src/editor.cpp @@ -1635,7 +1635,7 @@ void Editor::displayMapBorder() { QGraphicsPixmapItem *item = new QGraphicsPixmapItem(pixmap); item->setX(x * 16); item->setY(y * 16); - item->setZValue(-2); + item->setZValue(-3); scene->addItem(item); borderItems.append(item); }