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 store = useStore()
|
||||||
|
|
||||||
const minimizable = ref(true)
|
const minimizable = ref(true)
|
||||||
const maximizable = ref(true)
|
const maximizable = ref(false)
|
||||||
|
|
||||||
const { electron } = window
|
const { electron } = window
|
||||||
|
|
||||||
|
|||||||
@@ -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',
|
||||||
|
|||||||
Reference in New Issue
Block a user