mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-06 02:30:47 -08:00
fix: allow resize
This commit is contained in:
parent
55546ea109
commit
70fb66ce7b
1 changed files with 4 additions and 4 deletions
|
|
@ -141,10 +141,10 @@ export class Window implements IWindowService {
|
|||
const windowConfig: BrowserWindowConstructorOptions = {
|
||||
...windowDimension[windowName],
|
||||
...mainWindowConfig,
|
||||
resizable: false,
|
||||
maximizable: false,
|
||||
minimizable: false,
|
||||
fullscreenable: false,
|
||||
resizable: true,
|
||||
maximizable: true,
|
||||
minimizable: true,
|
||||
fullscreenable: true,
|
||||
autoHideMenuBar: false,
|
||||
titleBarStyle: titleBar ? 'default' : 'hidden',
|
||||
webPreferences: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue