fix: don't show mobile toobar on PC

pull/5411/head
Tienson Qin 2022-05-23 22:08:48 +08:00
parent cdc4f8befe
commit 276bfc7aae
2 changed files with 9 additions and 4 deletions

View File

@ -46,7 +46,8 @@
(rum/defc footer < rum/reactive
[]
(when (and (state/sub :mobile/show-tabbar?)
(when (and (state/mobile?)
(state/sub :mobile/show-tabbar?)
(state/get-current-repo))
[:div.cp__footer.w-full.bottom-0.justify-between
(audio-record-cp)

View File

@ -1190,9 +1190,13 @@
(set-state! :ui/shortcut-tooltip? (not mode))
(storage/set :ui/shortcut-tooltip? (not mode))))
(defn mobile?
[]
(or (util/mobile?) (mobile-util/native-platform?)))
(defn enable-tooltip?
[]
(if (or (util/mobile?) (mobile-util/native-platform?))
(if (mobile?)
false
(get (get (sub-config) (get-current-repo))
:ui/enable-tooltip?