diff options
author | massimilianoLe <44651815+massimilianoLe@users.noreply.github.com> | 2020-02-08 14:43:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-08 14:43:31 +0000 |
commit | e3ada5c2c650a4646873ce2046af945e917c6608 (patch) | |
tree | 70be9bbde7fecf0770d50bbee01ffbde0d4366ff /app/src/main/kotlin | |
parent | 2d54d588eb56e1ddf20cafeb95fa261e8a547607 (diff) | |
download | frost-e3ada5c2c650a4646873ce2046af945e917c6608.tar.gz frost-e3ada5c2c650a4646873ce2046af945e917c6608.tar.bz2 frost-e3ada5c2c650a4646873ce2046af945e917c6608.zip |
Fixed blank loading of some weblinks
Fixed blank loading of some weblinks
Diffstat (limited to 'app/src/main/kotlin')
-rw-r--r-- | app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt b/app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt index b76f0134..8cba5e11 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt @@ -76,6 +76,7 @@ class FrostWebView @JvmOverloads constructor( mediaPlaybackRequiresUserGesture = false // TODO check if we need this allowFileAccess = true textZoom = Prefs.webTextScaling + domStorageEnabled = true } setLayerType(LAYER_TYPE_HARDWARE, null) // attempt to get custom client; otherwise fallback to original |