mirror of
https://github.com/swaywm/sway.git
synced 2025-11-06 13:29:50 -05:00
Deny window resize requests
This commit is contained in:
parent
6066467dff
commit
c7be30d912
3 changed files with 9 additions and 1 deletions
|
|
@ -41,7 +41,10 @@ int main(int argc, char **argv) {
|
|||
.view = {
|
||||
.created = handle_view_created,
|
||||
.destroyed = handle_view_destroyed,
|
||||
.focus = handle_view_focus
|
||||
.focus = handle_view_focus,
|
||||
.request = {
|
||||
.geometry = handle_view_geometry_request
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue