634213618f
Signed-off-by: Antoine Damhet <antoine.damhet@lse.epita.fr>
37 lines
1.2 KiB
Diff
37 lines
1.2 KiB
Diff
From bd07471e8298f4b71c69d6a25ded5293141fd4fc Mon Sep 17 00:00:00 2001
|
|
From: Georges Basile Stavracas Neto <georges.stavracas@gmail.com>
|
|
Date: Wed, 19 Aug 2020 13:08:01 -0300
|
|
Subject: [PATCH 17/20] UI: Rename callback to match signal name
|
|
|
|
The sizeChanged callback is connected to the screenChanged signal,
|
|
and evidently the naming doesn't match. Rename the callback to
|
|
match the signal name.
|
|
---
|
|
UI/qt-display.cpp | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/UI/qt-display.cpp b/UI/qt-display.cpp
|
|
index c00719ce..feed5b6c 100644
|
|
--- a/UI/qt-display.cpp
|
|
+++ b/UI/qt-display.cpp
|
|
@@ -56,7 +56,7 @@ OBSQTDisplay::OBSQTDisplay(QWidget *parent, Qt::WindowFlags flags)
|
|
}
|
|
};
|
|
|
|
- auto sizeChanged = [this](QScreen *) {
|
|
+ auto screenChanged = [this](QScreen *) {
|
|
CreateDisplay();
|
|
|
|
QSize size = GetPixelSize(this);
|
|
@@ -64,7 +64,7 @@ OBSQTDisplay::OBSQTDisplay(QWidget *parent, Qt::WindowFlags flags)
|
|
};
|
|
|
|
connect(windowHandle(), &QWindow::visibleChanged, windowVisible);
|
|
- connect(windowHandle(), &QWindow::screenChanged, sizeChanged);
|
|
+ connect(windowHandle(), &QWindow::screenChanged, screenChanged);
|
|
}
|
|
|
|
QColor OBSQTDisplay::GetDisplayBackgroundColor() const
|
|
--
|
|
2.28.0
|
|
|