diff --git a/.changes/core-start-resize-permission.md b/.changes/core-start-resize-permission.md new file mode 100644 index 000000000..b0f4a43d1 --- /dev/null +++ b/.changes/core-start-resize-permission.md @@ -0,0 +1,5 @@ +--- +"tauri": "patch:bug" +--- + +Add missing permission for `window.start_resize_dragging` diff --git a/core/tauri/build.rs b/core/tauri/build.rs index f741f09b0..5c0f375ad 100644 --- a/core/tauri/build.rs +++ b/core/tauri/build.rs @@ -101,6 +101,7 @@ const PLUGINS: &[(&str, &[(&str, bool)])] = &[ ("set_cursor_position", false), ("set_ignore_cursor_events", false), ("start_dragging", false), + ("start_resize_dragging", false), ("set_progress_bar", false), ("set_icon", false), ("toggle_maximize", false), diff --git a/core/tauri/permissions/window/autogenerated/reference.md b/core/tauri/permissions/window/autogenerated/reference.md index 868a10c91..30f66275f 100644 --- a/core/tauri/permissions/window/autogenerated/reference.md +++ b/core/tauri/permissions/window/autogenerated/reference.md @@ -110,6 +110,8 @@ |`deny-show`|Denies the show command without any pre-configured scope.| |`allow-start-dragging`|Enables the start_dragging command without any pre-configured scope.| |`deny-start-dragging`|Denies the start_dragging command without any pre-configured scope.| +|`allow-start-resize-dragging`|Enables the start_resize_dragging command without any pre-configured scope.| +|`deny-start-resize-dragging`|Denies the start_resize_dragging command without any pre-configured scope.| |`allow-theme`|Enables the theme command without any pre-configured scope.| |`deny-theme`|Denies the theme command without any pre-configured scope.| |`allow-title`|Enables the title command without any pre-configured scope.|