Skip to content

Commit

Permalink
fix: Show WindowsTitleBar in Linux too
Browse files Browse the repository at this point in the history
  • Loading branch information
netchampfaris committed Dec 17, 2019
1 parent beb3105 commit 33c16db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div id="app" class="h-screen flex flex-col font-sans overflow-hidden">
<WindowsTitleBar
v-if="platform === 'Windows'"
v-if="['Windows', 'Linux'].includes(platform)"
@close="reloadMainWindowOnSettingsClose"
/>
<Desk class="flex-1" v-if="showDesk" />
Expand Down

0 comments on commit 33c16db

Please sign in to comment.