Skip to content

Commit

Permalink
fix(core): add permission for window.start_resize_dragging (#9490)
Browse files Browse the repository at this point in the history
closes #9485
  • Loading branch information
amrbashir committed Apr 17, 2024
1 parent 8a63ceb commit a07b513
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changes/core-start-resize-permission.md
@@ -0,0 +1,5 @@
---
"tauri": "patch:bug"
---

Add missing permission for `window.start_resize_dragging`
1 change: 1 addition & 0 deletions core/tauri/build.rs
Expand Up @@ -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),
Expand Down
2 changes: 2 additions & 0 deletions core/tauri/permissions/window/autogenerated/reference.md
Expand Up @@ -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.|
Expand Down

0 comments on commit a07b513

Please sign in to comment.