Merge pull request #684 from twvd/msg

Prevent selecting Vulkan renderer in Qt frontend and present a message
This commit is contained in:
wheremyfoodat 2024-12-12 22:50:30 +02:00 committed by GitHub
commit 3787358bda
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -190,8 +190,18 @@ ConfigWindow::ConfigWindow(ConfigCallback configCallback, MainWindowCallback win
rendererType->addItem(tr("Vulkan"));
rendererType->setCurrentIndex(static_cast<int>(config.rendererType));
connect(rendererType, &QComboBox::currentIndexChanged, this, [&](int index) {
config.rendererType = static_cast<RendererType>(index);
updateConfig();
auto type = static_cast<RendererType>(index);
if (type == RendererType::Vulkan) {
QMessageBox messageBox(
QMessageBox::Icon::Critical, tr("Vulkan renderer unavailable"),
tr("Qt UI doesn't currently support Vulkan, try again at a later time")
);
messageBox.exec();
} else {
config.rendererType = type;
updateConfig();
}
});
gpuLayout->addRow(tr("GPU renderer"), rendererType);