1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-20 01:14:20 +00:00

Scale webpages to fit display by default on iOS

This commit is contained in:
hogliux 2016-02-15 09:19:17 +00:00
parent e67b67f513
commit 05a3ebc4eb

View file

@ -260,6 +260,10 @@ public:
#else
[webView loadRequest: r];
#endif
#if JUCE_IOS
[webView setScalesPageToFit:YES];
#endif
}
}