fix issue 1160

This commit is contained in:
Paulchen-Panther
2021-01-24 13:28:20 +01:00
parent aa20f87659
commit b0afa7cd03
3 changed files with 38 additions and 38 deletions

View File

@@ -115,7 +115,7 @@ int QtGrabber::updateScreenDimensions(bool force)
return -1;
const QRect& geo = _screen->geometry();
if (!force && _width == unsigned(geo.right()) && _height == unsigned(geo.bottom()))
if (!force && _width == geo.right() && _height == geo.bottom())
{
// No update required
return 0;