Resize preview when OBS windows are moved between monitors

This should fix the previews in most cases when moving between monitors
with differing pixel ratios
This commit is contained in:
Palana
2014-04-16 22:35:01 +02:00
parent b0237fd581
commit 9894bb4357
2 changed files with 19 additions and 0 deletions

View File

@@ -21,6 +21,9 @@
#include "qt-wrappers.hpp"
#include "display-helpers.hpp"
#include <QScreen>
#include <QWindow>
using namespace std;
OBSBasicProperties::OBSBasicProperties(QWidget *parent, OBSSource source_)
@@ -46,6 +49,12 @@ OBSBasicProperties::OBSBasicProperties(QWidget *parent, OBSSource source_)
layout()->addWidget(view);
layout()->setAlignment(view, Qt::AlignRight);
view->show();
connect(windowHandle(), &QWindow::screenChanged, [this]() {
if (resizeTimer)
killTimer(resizeTimer);
resizeTimer = startTimer(100);
});
}
void OBSBasicProperties::SourceRemoved(void *data, calldata_t params)