From 2be5291a3e5840e32c0de264c299a19a859c4672 Mon Sep 17 00:00:00 2001 From: wayne wang Date: Wed, 14 Oct 2015 16:05:07 +0800 Subject: [PATCH] UI: Fix non-standard string character in source (Jim) For some reason a character outside of the standard ASCII character set was used in this source file. "Eight Spoked Asterisk", Unicode character 0x02733. Non-ASCII characters should probably not be used directly in source files due to potential character encoding issues that can occur depending on the operating system and compiler. Closes jp9000/obs-studio#485 --- obs/window-basic-settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obs/window-basic-settings.cpp b/obs/window-basic-settings.cpp index e63e09096..19e4f99b6 100644 --- a/obs/window-basic-settings.cpp +++ b/obs/window-basic-settings.cpp @@ -1876,7 +1876,7 @@ void OBSBasicSettings::LoadHotkeySettings(obs_hotkey_id ignoreKey) OBSHotkeyLabel *other, const QString &otherName) { label->setToolTip(tt.arg(otherName)); - label->setText(name + " ✳"); + label->setText(name + " *"); label->pairPartner = other; }; Update(label1, name1, label2, name2); -- GitLab