[plugin] DocSettingTweak: disable on NT devices (#8599)

In the same way as a31d944. Closes #8596.
This commit is contained in:
hius07
2022-01-02 12:58:01 +02:00
committed by GitHub
parent 10584494ee
commit e65ff7b7c8

View File

@@ -1,3 +1,9 @@
local Device = require("device")
if not Device:isTouchDevice() then
return { disabled = true }
end
local BD = require("ui/bidi")
local DataStorage = require("datastorage")
local FFIUtil = require("ffi/util")