张恒

修正加载框可以选中和改变大小的问题

...@@ -90,6 +90,8 @@ function loadindWindow () { ...@@ -90,6 +90,8 @@ function loadindWindow () {
90 frame: false, 90 frame: false,
91 backgroundColor: '#222', 91 backgroundColor: '#222',
92 transparent: true, 92 transparent: true,
93 + skipTaskbar: true,
94 + resizable: false,
93 webPreferences: { experimentalFeatures: true } 95 webPreferences: { experimentalFeatures: true }
94 }) 96 })
95 97
......
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
10 height: 100%; 10 height: 100%;
11 min-height: 100%; 11 min-height: 100%;
12 overflow: hidden; 12 overflow: hidden;
13 + user-select: none;
14 + -webkit-app-region: no-drag;
13 } 15 }
14 16
15 html body { 17 html body {
......