Fix "Planes for unnamed"

This commit is contained in:
Mael Rouxel-Labbé 2022-12-07 11:42:30 +01:00
parent d90d47fb79
commit c36c54c139
1 changed files with 1 additions and 1 deletions

View File

@ -1377,11 +1377,11 @@ bool Io_image_plugin::loadDCM(QString dirname)
{
// Create planes
image_item = new Scene_image_item(image,125, true);
image_item->setName(fileinfo.baseName());
msgBox.setText("Planes created : 0/3");
msgBox.setStandardButtons(QMessageBox::NoButton);
msgBox.show();
createPlanes(image_item);
image_item->setName(fileinfo.baseName());
scene->addItem(image_item);
}
else