fix: explicitly enable native OS drag-drop on main window
Browse files- src-tauri/tauri.conf.json +52 -51
src-tauri/tauri.conf.json
CHANGED
|
@@ -1,51 +1,52 @@
|
|
| 1 |
-
{
|
| 2 |
-
"$schema": "https://schema.tauri.app/config/2",
|
| 3 |
-
"productName": "Refstudio",
|
| 4 |
-
"version": "1.0.0",
|
| 5 |
-
"identifier": "app.refstudio.board",
|
| 6 |
-
"build": {
|
| 7 |
-
"beforeDevCommand": "deno task dev",
|
| 8 |
-
"devUrl": "http://localhost:1420",
|
| 9 |
-
"beforeBuildCommand": "deno task build",
|
| 10 |
-
"frontendDist": "../dist"
|
| 11 |
-
},
|
| 12 |
-
"app": {
|
| 13 |
-
"withGlobalTauri": false,
|
| 14 |
-
"windows": [
|
| 15 |
-
{
|
| 16 |
-
"label": "main",
|
| 17 |
-
"title": "Refstudio",
|
| 18 |
-
"width": 1280,
|
| 19 |
-
"height": 800,
|
| 20 |
-
"minWidth": 900,
|
| 21 |
-
"minHeight": 600,
|
| 22 |
-
"resizable": true,
|
| 23 |
-
"fullscreen": false,
|
| 24 |
-
"decorations": false,
|
| 25 |
-
"transparent": false,
|
| 26 |
-
"shadow": true,
|
| 27 |
-
"center": true,
|
| 28 |
-
"visible": true,
|
| 29 |
-
"zoomHotkeysEnabled": false
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
"
|
| 44 |
-
"
|
| 45 |
-
|
| 46 |
-
"icons/
|
| 47 |
-
"icons/128x128
|
| 48 |
-
"icons/
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
}
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"$schema": "https://schema.tauri.app/config/2",
|
| 3 |
+
"productName": "Refstudio",
|
| 4 |
+
"version": "1.0.0",
|
| 5 |
+
"identifier": "app.refstudio.board",
|
| 6 |
+
"build": {
|
| 7 |
+
"beforeDevCommand": "deno task dev",
|
| 8 |
+
"devUrl": "http://localhost:1420",
|
| 9 |
+
"beforeBuildCommand": "deno task build",
|
| 10 |
+
"frontendDist": "../dist"
|
| 11 |
+
},
|
| 12 |
+
"app": {
|
| 13 |
+
"withGlobalTauri": false,
|
| 14 |
+
"windows": [
|
| 15 |
+
{
|
| 16 |
+
"label": "main",
|
| 17 |
+
"title": "Refstudio",
|
| 18 |
+
"width": 1280,
|
| 19 |
+
"height": 800,
|
| 20 |
+
"minWidth": 900,
|
| 21 |
+
"minHeight": 600,
|
| 22 |
+
"resizable": true,
|
| 23 |
+
"fullscreen": false,
|
| 24 |
+
"decorations": false,
|
| 25 |
+
"transparent": false,
|
| 26 |
+
"shadow": true,
|
| 27 |
+
"center": true,
|
| 28 |
+
"visible": true,
|
| 29 |
+
"zoomHotkeysEnabled": false,
|
| 30 |
+
"dragDropEnabled": true
|
| 31 |
+
}
|
| 32 |
+
],
|
| 33 |
+
"security": {
|
| 34 |
+
"csp": null
|
| 35 |
+
}
|
| 36 |
+
},
|
| 37 |
+
"plugins": {
|
| 38 |
+
"sql": {
|
| 39 |
+
"preload": ["sqlite:muse_alpha_v2.db"]
|
| 40 |
+
}
|
| 41 |
+
},
|
| 42 |
+
"bundle": {
|
| 43 |
+
"active": true,
|
| 44 |
+
"targets": "all",
|
| 45 |
+
"icon": [
|
| 46 |
+
"icons/32x32.png",
|
| 47 |
+
"icons/128x128.png",
|
| 48 |
+
"icons/128x128@2x.png",
|
| 49 |
+
"icons/icon.ico"
|
| 50 |
+
]
|
| 51 |
+
}
|
| 52 |
+
}
|