Set border visibility after redo/undo
This commit is contained in:
parent
5b26ba678b
commit
a3d10ef306
1 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ void Editor::undo() {
|
||||||
map_item->draw();
|
map_item->draw();
|
||||||
collision_item->draw();
|
collision_item->draw();
|
||||||
selected_border_metatiles_item->draw();
|
selected_border_metatiles_item->draw();
|
||||||
displayMapBorder();
|
onBorderMetatilesChanged();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ void Editor::redo() {
|
||||||
map_item->draw();
|
map_item->draw();
|
||||||
collision_item->draw();
|
collision_item->draw();
|
||||||
selected_border_metatiles_item->draw();
|
selected_border_metatiles_item->draw();
|
||||||
displayMapBorder();
|
onBorderMetatilesChanged();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue