gui: IPCPreviewClient: Raise error signal() instead of exception

Este commit está contenido en:
Albert S. 2022-05-30 00:05:04 +02:00
padre 11af6e530e
commit 4aa850d5ed
Se han modificado 1 ficheros con 2 adiciones y 1 borrados

Ver fichero

@ -84,7 +84,8 @@ void IPCPreviewClient::start(RenderConfig config, const QVector<RenderTarget> &t
} while(!stream.commitTransaction() && socket->state() == QLocalSocket::ConnectedState);
if(numTarget != targets.count())
{
throw std::runtime_error("Server reports less targets than it should");
emit error("IPC Error: Server reports less targets than it should");
return;
}
}
else