Fix map border layering above connections after map switch
This commit is contained in:
parent
8246d62834
commit
51b57f9222
1 changed files with 1 additions and 1 deletions
|
@ -1635,7 +1635,7 @@ void Editor::displayMapBorder() {
|
||||||
QGraphicsPixmapItem *item = new QGraphicsPixmapItem(pixmap);
|
QGraphicsPixmapItem *item = new QGraphicsPixmapItem(pixmap);
|
||||||
item->setX(x * 16);
|
item->setX(x * 16);
|
||||||
item->setY(y * 16);
|
item->setY(y * 16);
|
||||||
item->setZValue(-2);
|
item->setZValue(-3);
|
||||||
scene->addItem(item);
|
scene->addItem(item);
|
||||||
borderItems.append(item);
|
borderItems.append(item);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue