mirror of
https://github.com/swaywm/sway.git
synced 2024-11-26 01:41:30 +00:00
Track the fullscreen view on a workspace swayc_t
This commit is contained in:
parent
6655534feb
commit
d361ce656d
|
@ -97,6 +97,10 @@ struct sway_container {
|
|||
* Which of this container's children has focus.
|
||||
*/
|
||||
struct sway_container *focused;
|
||||
/**
|
||||
* If this container's children include a fullscreen view, this is that view.
|
||||
*/
|
||||
struct sway_container *fullscreen;
|
||||
};
|
||||
|
||||
enum visibility_mask {
|
||||
|
|
|
@ -1349,15 +1349,18 @@ static struct cmd_results *cmd_fullscreen(int argc, char **argv) {
|
|||
return error;
|
||||
}
|
||||
swayc_t *container = get_focused_view(&root_container);
|
||||
swayc_t *workspace = swayc_parent_by_type(container, C_WORKSPACE);
|
||||
bool current = swayc_is_fullscreen(container);
|
||||
wlc_view_set_state(container->handle, WLC_BIT_FULLSCREEN, !current);
|
||||
// Resize workspace if going from fullscreen -> notfullscreen
|
||||
// otherwise just resize container
|
||||
if (current) {
|
||||
container = swayc_parent_by_type(container, C_WORKSPACE);
|
||||
arrange_windows(workspace, -1, -1);
|
||||
workspace->fullscreen = container;
|
||||
} else {
|
||||
arrange_windows(container, -1, -1);
|
||||
workspace->fullscreen = NULL;
|
||||
}
|
||||
// Only resize container when going into fullscreen
|
||||
arrange_windows(container, -1, -1);
|
||||
|
||||
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue