mirror of
https://github.com/YACReader/yacreader
synced 2025-07-20 22:14:41 -04:00
Add missing switch case for ultraHigh in yacreader_flow_gl.cpp
This commit is contained in:
@ -1451,7 +1451,8 @@ QImage ImageLoaderGL::loadImage(const QString& fileName)
|
|||||||
case high:
|
case high:
|
||||||
image = image.scaledToWidth(320,Qt::SmoothTransformation);
|
image = image.scaledToWidth(320,Qt::SmoothTransformation);
|
||||||
break;
|
break;
|
||||||
|
case ultraHigh:
|
||||||
|
break; //no scaling in ultraHigh
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!result)
|
if(!result)
|
||||||
|
@ -1406,7 +1406,8 @@ QImage ImageLoaderGL::loadImage(const QString& fileName)
|
|||||||
case high:
|
case high:
|
||||||
image = image.scaledToWidth(320,Qt::SmoothTransformation);
|
image = image.scaledToWidth(320,Qt::SmoothTransformation);
|
||||||
break;
|
break;
|
||||||
|
case ultraHigh:
|
||||||
|
break; //no scaling in ultraHigh
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!result)
|
if(!result)
|
||||||
|
Reference in New Issue
Block a user