mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2026-08-06 20:08:48 +02:00
Update:Show status bar when ereader toolbar is shown
This commit is contained in:
@@ -39,10 +39,9 @@ export default {
|
||||
show: {
|
||||
handler(newVal) {
|
||||
if (newVal) {
|
||||
this.showingToolbar = false
|
||||
this.comicHasMetadata = false
|
||||
this.registerListeners()
|
||||
this.$showHideStatusBar(false)
|
||||
this.hideToolbar()
|
||||
} else {
|
||||
this.unregisterListeners()
|
||||
this.$showHideStatusBar(true)
|
||||
@@ -199,9 +198,11 @@ export default {
|
||||
},
|
||||
showToolbar() {
|
||||
this.showingToolbar = true
|
||||
this.$showHideStatusBar(true)
|
||||
},
|
||||
hideToolbar() {
|
||||
this.showingToolbar = false
|
||||
this.$showHideStatusBar(false)
|
||||
},
|
||||
toggleToolbar() {
|
||||
if (this.showingToolbar) this.hideToolbar()
|
||||
|
||||
Reference in New Issue
Block a user