From f1f405171b3309780bc53dfd300ee6ea5783ae96 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 24 Feb 2022 08:44:35 -0500 Subject: [PATCH] Change the help text of the other options too --- src/settingswindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/settingswindow.cpp b/src/settingswindow.cpp index fed88c2..53942b8 100644 --- a/src/settingswindow.cpp +++ b/src/settingswindow.cpp @@ -269,7 +269,7 @@ SettingsWindow::SettingsWindow(LauncherWindow& window, LauncherCore& core, QWidg auto gamescopeLabel = new QPushButton("?"); connect(gamescopeLabel, &QPushButton::pressed, [gamescopeLabel] { - QToolTip::showText(gamescopeLabel->mapToGlobal(QPoint()), "Use the SteamOS compositor that uses Wayland.\nIf you are experiencing input issues on XWayland, try this option if you have it installed."); + QToolTip::showText(gamescopeLabel->mapToGlobal(QPoint()), "Use the micro-compositor compositor that uses Wayland and XWayland to create a nested session.\nIf you primarily use fullscreen mode, this may improve input handling especially on Wayland."); }); gamescopeButtonLayout->addWidget(gamescopeLabel); @@ -287,12 +287,12 @@ SettingsWindow::SettingsWindow(LauncherWindow& window, LauncherCore& core, QWidg this->reloadControls(); }); - useGamemode = new QCheckBox("Use Gamemode"); + useGamemode = new QCheckBox("Use GameMode"); wineBoxLayout->addWidget(useGamemode); auto gamemodeLabel = new QPushButton("?"); connect(gamemodeLabel, &QPushButton::pressed, [gamemodeLabel] { - QToolTip::showText(gamemodeLabel->mapToGlobal(QPoint()), "Use Feral Interactive's GameMode, which applies a couple of performance enhancements.\nMay give a slight performance boost, but requires GameMode to be installed."); + QToolTip::showText(gamemodeLabel->mapToGlobal(QPoint()), "A special game performance enhancer, which automatically tunes your CPU scheduler among other things. This may improve game performance."); }); wineBoxLayout->addWidget(gamemodeLabel);