提交 2be5291a 编写于 作者: W wayne wang 提交者: jp9000

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
上级 bc5f1b60
...@@ -1876,7 +1876,7 @@ void OBSBasicSettings::LoadHotkeySettings(obs_hotkey_id ignoreKey) ...@@ -1876,7 +1876,7 @@ void OBSBasicSettings::LoadHotkeySettings(obs_hotkey_id ignoreKey)
OBSHotkeyLabel *other, const QString &otherName) OBSHotkeyLabel *other, const QString &otherName)
{ {
label->setToolTip(tt.arg(otherName)); label->setToolTip(tt.arg(otherName));
label->setText(name + " "); label->setText(name + " *");
label->pairPartner = other; label->pairPartner = other;
}; };
Update(label1, name1, label2, name2); Update(label1, name1, label2, name2);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册