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

@ -37,3 +37,7 @@ void handle_view_focus(wlc_handle view, bool focus) {
wlc_view_set_state(view, WLC_BIT_ACTIVATED, focus);
focus_view(get_swayc_for_handle(view, &root_container));
}
void handle_view_geometry_request(wlc_handle view, const struct wlc_geometry* geometry) {
// deny that shit
}