CGradientValueData: fix toString() method (#5220)

This commit is contained in:
Holger Schurig 2024-03-22 18:34:51 +01:00 committed by GitHub
parent 9bad62b85f
commit c7c0e795d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -61,6 +61,7 @@ class CGradientValueData : public ICustomConfigValueData {
}
result += std::format("{}deg", (int)(m_fAngle * 180.0 / M_PI));
return result;
}
};