Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a07b513

Browse files
authored
fix(core): add permission for window.start_resize_dragging (tauri-apps#9490)
closes tauri-apps#9485
1 parent 8a63ceb commit a07b513

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tauri": "patch:bug"
3+
---
4+
5+
Add missing permission for `window.start_resize_dragging`

core/tauri/build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ const PLUGINS: &[(&str, &[(&str, bool)])] = &[
101101
("set_cursor_position", false),
102102
("set_ignore_cursor_events", false),
103103
("start_dragging", false),
104+
("start_resize_dragging", false),
104105
("set_progress_bar", false),
105106
("set_icon", false),
106107
("toggle_maximize", false),

core/tauri/permissions/window/autogenerated/reference.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@
110110
|`deny-show`|Denies the show command without any pre-configured scope.|
111111
|`allow-start-dragging`|Enables the start_dragging command without any pre-configured scope.|
112112
|`deny-start-dragging`|Denies the start_dragging command without any pre-configured scope.|
113+
|`allow-start-resize-dragging`|Enables the start_resize_dragging command without any pre-configured scope.|
114+
|`deny-start-resize-dragging`|Denies the start_resize_dragging command without any pre-configured scope.|
113115
|`allow-theme`|Enables the theme command without any pre-configured scope.|
114116
|`deny-theme`|Denies the theme command without any pre-configured scope.|
115117
|`allow-title`|Enables the title command without any pre-configured scope.|

0 commit comments

Comments
 (0)