Skip to content

Commit

Permalink
fixes for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Aug 7, 2024
1 parent 670aed6 commit 099c691
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion app/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,12 @@
.accent-text {
filter: brightness(0.5);
}
</style>
</style>

<script>
export default {
mounted() {
}
}
</script>
2 changes: 1 addition & 1 deletion app/src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async function createWindow() {
minWidth: 720,
height: 700,
autoHideMenuBar: true,
titleBarStyle: 'hidden',
//titleBarStyle: 'hidden',
titleBarOverlay: {
color: '#1C1B1F',
symbolColor: '#8867c0'
Expand Down
6 changes: 3 additions & 3 deletions app/src/components/home/information.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<template>
<div>
<div role="alert" class="alert alert-error mx-4 w-full">
<div role="alert" class="alert alert-error mx-4 w-full" v-if="errors?.length > 0">
<span>
<h2 class="font-bold text-lg">{{ errors?.length }} issue(s) occurred while starting SCRCPY+</h2>
<p>{{ errors?.join('\n\n') }}</p>
<h2 class="font-bold text-lg">{{ errors?.length }} issue{{ errors?.length > 1 ? "s" : "" }} occurred while starting SCRCPY+</h2>
<p v-html="errors?.join('<br/>')" />
</span>
</div>

Expand Down

0 comments on commit 099c691

Please sign in to comment.