Fix incorrect scaling check

This entire system needs a refactor anyway, good enough^TM
This commit is contained in:
Salanto 2023-08-09 21:12:05 +02:00
parent 6daaccaa43
commit a962ba08ba

View File

@ -153,7 +153,7 @@ Qt::TransformationMode AOApplication::get_scaling(QString p_scaling)
if (p_scaling.isEmpty())
p_scaling = Options::getInstance().defaultScalingMode();
if (p_scaling == "smooth")
if (p_scaling == "Smooth")
return Qt::SmoothTransformation;
return Qt::FastTransformation;
}