mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 10:08:46 +02:00
disable interstitial on android
This commit is contained in:
parent
312f336210
commit
8633dc0f66
1 changed files with 5 additions and 1 deletions
|
@ -231,7 +231,11 @@ private:
|
|||
QString _pendingPath;
|
||||
QTimer _settingsTimer;
|
||||
mutable ReadWriteLockable _interstitialModeSettingLock;
|
||||
Setting::Handle<bool> _enableInterstitialMode{ "enableInterstitialMode", true };
|
||||
#ifdef Q_OS_ANDROID
|
||||
Setting::Handle<bool> _enableInterstitialMode{ "enableInterstitialMode", false };
|
||||
#else
|
||||
Setting::Handle<bool> _enableInterstitialMode { "enableInterstitialMode", true };
|
||||
#endif
|
||||
|
||||
QSet<QString> _domainConnectionRefusals;
|
||||
bool _hasCheckedForAccessToken { false };
|
||||
|
|
Loading…
Reference in a new issue