UPD: Disable maximizing

Was causing some slight problems
This commit is contained in:
Robert Kossessa
2024-02-05 15:51:53 +01:00
parent 294b168822
commit cdcd403165
2 changed files with 2 additions and 2 deletions

View File

@@ -104,7 +104,7 @@ import { useStore } from '@/store'
const store = useStore() const store = useStore()
const minimizable = ref(true) const minimizable = ref(true)
const maximizable = ref(true) const maximizable = ref(false)
const { electron } = window const { electron } = window

View File

@@ -25,7 +25,7 @@ const createWindow = () => {
resizable: true, resizable: true,
minWidth: width / 3, minWidth: width / 3,
minHeight: height / 3, minHeight: height / 3,
maximizable: true, maximizable: false,
fullscreenable: false, fullscreenable: false,
center: true, center: true,
backgroundColor: '#000', backgroundColor: '#000',