Deny window resize requests

This commit is contained in:
Drew DeVault 2015-08-08 18:22:22 -04:00
parent 6066467dff
commit c7be30d912
3 changed files with 9 additions and 1 deletions

View file

@ -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
}
}
};