mirror of
https://github.com/romancm/gamebrary
synced 2024-11-15 15:57:59 +00:00
set as wallpaper WIP
This commit is contained in:
parent
b4d3f3ea04
commit
386066f1fb
1 changed files with 8 additions and 1 deletions
|
@ -49,7 +49,9 @@
|
|||
</template>
|
||||
|
||||
<!-- TODO: allow to save screenshot as board wallpaper -->
|
||||
<!-- <b-button @click="test">Set as board wallpaper</b-button> -->
|
||||
<b-button @click="setAsWallpaper">
|
||||
Set as wallpaper
|
||||
</b-button>
|
||||
|
||||
<b-button
|
||||
:variant="nightMode ? 'dark' : 'light'"
|
||||
|
@ -130,6 +132,11 @@ export default {
|
|||
},
|
||||
|
||||
methods: {
|
||||
setAsWallpaper() {
|
||||
console.log(this.slides[this.activeImage]);
|
||||
console.log(this.activeImage);
|
||||
},
|
||||
|
||||
previous() {
|
||||
this.$refs.screenshots.prev();
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue