Prechádzať zdrojové kódy

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)
wangshaohui 4 rokov pred
rodič
commit
f36b601aab
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      UI/window-basic-main.cpp

+ 1 - 1
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);
 	}