| 259 | } |
| 260 | |
| 261 | qreal QuickUI::fontScale() const |
| 262 | { |
| 263 | #ifdef Q_OS_ANDROID |
| 264 | return qreal(QJniObject(QNativeInterface::QAndroidApplication::context()).callMethod<jfloat>("fontScale", "()F")); |
| 265 | #else |
| 266 | return qreal(1.0); |
| 267 | #endif |
| 268 | } |
| 269 | |
| 270 | int QuickUI::fontWeightAdjustment() const |
| 271 | { |
nothing calls this directly
no outgoing calls
no test coverage detected