mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
Merge pull request #35 from taiyu-len/master
set maximize flag for handled views
This commit is contained in:
commit
d3d0ba3a4b
@ -89,6 +89,9 @@ static bool handle_view_created(wlc_handle handle) {
|
||||
swayc_t *focused = get_focused_container(&root_container);
|
||||
swayc_t *view = new_view(focused, handle);
|
||||
if (view) {
|
||||
//Set maximize flag for windows.
|
||||
//TODO: floating windows have this unset
|
||||
wlc_view_set_state(handle, WLC_BIT_MAXIMIZED, true);
|
||||
unfocus_all(&root_container);
|
||||
focus_view(view);
|
||||
arrange_windows(view->parent, -1, -1);
|
||||
|
Loading…
Reference in New Issue
Block a user