add success message to tileset creation
This commit is contained in:
parent
cf9a4bc0fc
commit
be371aed17
1 changed files with 7 additions and 0 deletions
|
@ -942,6 +942,13 @@ void MainWindow::on_actionNew_Tileset_triggered() {
|
||||||
} else {
|
} else {
|
||||||
this->ui->comboBox_SecondaryTileset->addItem(createTilesetDialog->fullSymbolName);
|
this->ui->comboBox_SecondaryTileset->addItem(createTilesetDialog->fullSymbolName);
|
||||||
}
|
}
|
||||||
|
QMessageBox msgBox(this);
|
||||||
|
msgBox.setText("Successfully created tileset.");
|
||||||
|
QString message = QString("Tileset \"%1\" was created successfully.").arg(createTilesetDialog->friendlyName);
|
||||||
|
msgBox.setInformativeText(message);
|
||||||
|
msgBox.setDefaultButton(QMessageBox::Ok);
|
||||||
|
msgBox.setIcon(QMessageBox::Icon::Information);
|
||||||
|
msgBox.exec();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue