Remove Android High-DPI workarounds in examples

These should no longer be needed for Qt 6.

Change-Id: Ica7214cbf4fc3ddae960309fe89681ec690d28d0
Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
This commit is contained in:
Tor Arne Vestbø 2022-11-28 15:21:51 +01:00
parent 465bde54a0
commit 846cda7eb0
3 changed files with 1 additions and 9 deletions

View File

@ -8,9 +8,7 @@
int main(int argc, char **argv)
{
Q_INIT_RESOURCE(affine);
#ifdef Q_OS_ANDROID
qputenv("QT_SCALE_FACTOR", "2");
#endif
QApplication app(argc, argv);
XFormWidget xformWidget(nullptr);

View File

@ -8,9 +8,6 @@
int main(int argc, char *argv[])
{
Q_INIT_RESOURCE(gradients);
#ifdef Q_OS_ANDROID
qputenv("QT_SCALE_FACTOR", "2");
#endif
QApplication app(argc, argv);

View File

@ -8,9 +8,6 @@
int main(int argc, char **argv)
{
Q_INIT_RESOURCE(pathstroke);
#ifdef Q_OS_ANDROID
qputenv("QT_SCALE_FACTOR", "2");
#endif
QApplication app(argc, argv);