mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-25 11:22:58 +00:00
simplify QPaintEngineEx::supportsTransformations() logic
This commit is contained in:
parent
ba06271385
commit
acc744e6ed
1 changed files with 1 additions and 4 deletions
|
@ -1036,10 +1036,7 @@ bool QPaintEngineEx::supportsTransformations(const qreal pixelSize, const QTrans
|
|||
{
|
||||
Q_UNUSED(pixelSize);
|
||||
|
||||
if (!m.isAffine())
|
||||
return true;
|
||||
|
||||
return false;
|
||||
return !m.isAffine();
|
||||
}
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
|
Loading…
Add table
Reference in a new issue