UPD: Disable maximizing
Was causing some slight problems
This commit is contained in:
@@ -104,7 +104,7 @@ import { useStore } from '@/store'
|
||||
const store = useStore()
|
||||
|
||||
const minimizable = ref(true)
|
||||
const maximizable = ref(true)
|
||||
const maximizable = ref(false)
|
||||
|
||||
const { electron } = window
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ const createWindow = () => {
|
||||
resizable: true,
|
||||
minWidth: width / 3,
|
||||
minHeight: height / 3,
|
||||
maximizable: true,
|
||||
maximizable: false,
|
||||
fullscreenable: false,
|
||||
center: true,
|
||||
backgroundColor: '#000',
|
||||
|
||||
Reference in New Issue
Block a user