1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-21 20:27:45 +00:00

Use critical icon for missing wine dialog

This commit is contained in:
Joshua Goins 2022-04-10 21:13:23 -04:00
parent b7ecfb3ebf
commit a5cc9f451f

View file

@ -140,7 +140,7 @@ int main(int argc, char* argv[]) {
#if defined(Q_OS_LINUX) || defined(Q_OS_MAC)
if(!defaultProfile.isWineInstalled()) {
auto messageBox = new QMessageBox(&w);
messageBox->setIcon(QMessageBox::Icon::Question);
messageBox->setIcon(QMessageBox::Icon::Critical);
messageBox->setText("No Wine Found");
messageBox->setInformativeText("Wine is not installed but is required to FFXIV on this operating system.");
messageBox->setWindowModality(Qt::WindowModal);