UI: Fix start up crash with saved projectors

This fixes a crash in case the user selected the option to save
projectors on exit and had multiple monitors at that time. Later on,
when obs is started again if the monitor list is lower now the open
projector code will return null when trying to create the saved
projector.

Just check if the returned projector pointer is valid before trying
to restore the saved geometry.
master
Shaolin 2018-07-24 17:43:58 -03:00
parent d13bbe6e59
commit be8189b0f8
1 changed files with 1 additions and 1 deletions

View File

@ -5692,7 +5692,7 @@ void OBSBasic::OpenSavedProjectors()
}
}
if (!info->geometry.empty()) {
if (projector && !info->geometry.empty()) {
QByteArray byteArray = QByteArray::fromBase64(
QByteArray(info->geometry.c_str()));
projector->restoreGeometry(byteArray);