We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dea4fd commit 58bea0fCopy full SHA for 58bea0f
app/src/conversion.cpp
@@ -124,7 +124,7 @@ KTex ToTexConverter::convert()
124
QImage baseImage = convertToBasePixelFormat();
125
126
// Flip
127
- baseImage.flip();
+ baseImage.mirror(); // .flip() in >= Qt 6.9.0
128
129
// Working images
130
QVector<QImage> workingImages = {baseImage};
@@ -209,7 +209,7 @@ QImage FromTexConverter::convert()
209
QImage img = convertToStandardFormat(mainImage);
210
211
212
- img.flip();
+ img.mirror(); // .flip() in >= Qt 6.9.0
213
214
return img;
215
}
0 commit comments