Browse Source

wayland: better message

Signed-off-by: Caio Oliveira <caiooliveirafarias0@gmail.com>
pull/2820/head
Caio Oliveira 3 months ago
committed by crueter
parent
commit
e5d47b4685
  1. 7
      src/yuzu/main.cpp

7
src/yuzu/main.cpp

@ -4582,10 +4582,9 @@ void GMainWindow::OnCheckGraphicsBackend() {
QMessageBox msgbox(this); QMessageBox msgbox(this);
msgbox.setWindowTitle(tr("Wayland Detected!")); msgbox.setWindowTitle(tr("Wayland Detected!"));
msgbox.setText(tr("You are running Eden under Wayland Graphics Backend.\n\n"
"It's recommended to use X11 for the best compatibility.\n\n"
"There's no plan to support Wayland at moment\n"
"Expect slow performance and crashes!"));
msgbox.setText(tr("Wayland is known to have significant performance issues and mysterious bugs.\n"
"It's recommended to use X11 instead.\n\n"
"Would you like to force it for future launches?"));
msgbox.setIcon(QMessageBox::Warning); msgbox.setIcon(QMessageBox::Warning);
QPushButton* okButton = msgbox.addButton(tr("Use X11"), QMessageBox::AcceptRole); QPushButton* okButton = msgbox.addButton(tr("Use X11"), QMessageBox::AcceptRole);

Loading…
Cancel
Save