High Resolution Mode: Add word Experimental to checkbox

This commit is contained in:
LoudSnorer 2023-11-25 19:20:57 -05:00
parent 2b1d96817f
commit 31e7571a63

View File

@ -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.");
}