Fix color of setting hints. Minor tweak to clipboard notifications

See #21223
This commit is contained in:
Henrik Rydgård
2026-02-17 11:32:10 +01:00
parent c89582cfd6
commit e65013201f
5 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -1254,7 +1254,7 @@ public:
if (!portrait_ && (touch.flags & TouchInputFlags::DOWN) && bounds_.Contains(touch.x, touch.y) && touch.y >= bounds_.y2() - 20) {
auto di = GetI18NCategory(I18NCat::DIALOG);
System_CopyStringToClipboard(PPSSPP_GIT_VERSION);
g_OSD.Show(OSDType::MESSAGE_INFO, ApplySafeSubstitutions(di->T("Copied to clipboard: %1"), PPSSPP_GIT_VERSION), 1.0f, "copyToClip");
g_OSD.Show(OSDType::MESSAGE_INFO, ApplySafeSubstitutions(di->T("Copied to clipboard: %1"), PPSSPP_GIT_VERSION), 0.0f, "copyToClip");
return true;
}
return retval;