From 31e7571a63e728d1d6bec7f0b0313174a9f3b327 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Sat, 25 Nov 2023 19:20:57 -0500 Subject: [PATCH] High Resolution Mode: Add word Experimental to checkbox --- oscar/highresolution.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oscar/highresolution.cpp b/oscar/highresolution.cpp index 74610c4c..1cfcc152 100644 --- a/oscar/highresolution.cpp +++ b/oscar/highresolution.cpp @@ -75,14 +75,14 @@ namespace HighResolution { QString label; if (hiResolutionNextSessionMode == HRM_ENABLED ) { if ( hiResolutionOperaingMode == hiResolutionNextSessionMode ) { - label = QObject::tr("High Resolution Mode is Enabled"); + label = QObject::tr("High Resolution Mode is Enabled (Experimental)"); } else { label = QObject::tr("The High Resolution Mode will be Enabled after Oscar is restarted."); } button->setChecked(true); } else { if ( hiResolutionOperaingMode == hiResolutionNextSessionMode ) { - label = QObject::tr("High Resolution Mode is Disabled"); + label = QObject::tr("High Resolution Mode is Disabled (Experimental)"); } else { label = QObject::tr("High Resolution Mode will be Disabled after Oscar is restarted."); }