Explorar o código

UI: Don't hide cursor over multiview

I considered making this an option, but I decided against it because
I felt it wasn't necessary and would make the settings more complex.
Opinions are welcome.
Clayton Groeneveld %!s(int64=7) %!d(string=hai) anos
pai
achega
4d908e31d3
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      UI/window-projector.cpp

+ 1 - 1
UI/window-projector.cpp

@@ -74,7 +74,7 @@ OBSProjector::OBSProjector(QWidget *widget, obs_source_t *source_, int monitor,
 
 	bool hideCursor = config_get_bool(GetGlobalConfig(),
 			"BasicWindow", "HideProjectorCursor");
-	if (hideCursor && !isWindow) {
+	if (hideCursor && !isWindow && type != ProjectorType::Multiview) {
 		QPixmap empty(16, 16);
 		empty.fill(Qt::transparent);
 		setCursor(QCursor(empty));