Fix map border layering above connections after map switch

This commit is contained in:
GriffinR 2023-02-18 01:21:08 -05:00
parent 8246d62834
commit 51b57f9222

View file

@ -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);
}