From f36b601aab84cd785be4ce29512f34de7a09ee7b Mon Sep 17 00:00:00 2001 From: wangshaohui Date: Wed, 31 Mar 2021 10:56:31 +0800 Subject: [PATCH] UI: Fix character to prevent VS2019 compiler error Apparently the specific character can cause VS2019 to have compiler errors depending on the system's current character encoding, so just remove it instead. (-Jim) --- UI/window-basic-main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp index 08778b9b9..68bd09a9d 100644 --- a/UI/window-basic-main.cpp +++ b/UI/window-basic-main.cpp @@ -1911,7 +1911,7 @@ void OBSBasic::OBSInit() } else if (isWayland) { if (opt_always_on_top) blog(LOG_INFO, - "Always On Top not available on Wayland, ignoring…"); + "Always On Top not available on Wayland, ignoring."); ui->actionAlwaysOnTop->setEnabled(false); ui->actionAlwaysOnTop->setVisible(false); }