diff options
author | Zero~Informatique | 2020-02-11 01:50:16 +0100 |
---|---|---|
committer | Zero~Informatique | 2020-02-11 01:50:16 +0100 |
commit | 8e91297ec0b090e3439efe2137a59192f5bb857b (patch) | |
tree | d1fdc3d1d1ff28fe892227ee6d3b4d9744689265 /viewer/src/views/GallerySearch.vue | |
parent | 15b6de3e39a37950e5a1cfb827eab8e10f27546e (diff) | |
download | ldgallery-8e91297ec0b090e3439efe2137a59192f5bb857b.tar.gz |
viewer: browsing pictures disables fullscreen. Resolves #115
Diffstat (limited to 'viewer/src/views/GallerySearch.vue')
-rw-r--r-- | viewer/src/views/GallerySearch.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/viewer/src/views/GallerySearch.vue b/viewer/src/views/GallerySearch.vue index 278bbe3..97c5c66 100644 --- a/viewer/src/views/GallerySearch.vue +++ b/viewer/src/views/GallerySearch.vue | |||
@@ -34,6 +34,10 @@ import { Component, Vue, Prop } from "vue-property-decorator"; | |||
34 | @Component | 34 | @Component |
35 | export default class GalleryPicture extends Vue { | 35 | export default class GalleryPicture extends Vue { |
36 | @Prop({ required: true }) readonly items!: Gallery.Item[]; | 36 | @Prop({ required: true }) readonly items!: Gallery.Item[]; |
37 | |||
38 | mounted() { | ||
39 | this.$uiStore.fullscreen = false; | ||
40 | } | ||
37 | } | 41 | } |
38 | </script> | 42 | </script> |
39 | 43 | ||