We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82b6ec9 commit 49dd47aCopy full SHA for 49dd47a
app/src/conversion.cpp
@@ -179,7 +179,7 @@ KTex ToTexConverter::convert()
179
QImage baseImage = convertToBasePixelFormat();
180
181
// Flip
182
- baseImage.flip();
+ baseImage.mirror(); // .flip() in >= Qt 6.9.0
183
184
// Working images
185
QVector<QImage> workingImages = {baseImage};
@@ -296,7 +296,7 @@ QImage FromTexConverter::convert()
296
QImage img = convertToStandardFormat(mainImage);
297
298
299
- img.flip();
+ img.mirror(); // .flip() in >= Qt 6.9.0
300
301
return img;
302
}
0 commit comments