mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 03:17:46 +03:00
Move auto_back_and_forth logic out of workspace_switch
This extracts the code to a separate workspace_auto_back_and_forth function. It also removes the bool argument by adding an extra if statement at the call site, and repurposes the no_auto_back_and_forth variable to auto_back_and_forth for simpler understanding.
This commit is contained in:
parent
771cff23fb
commit
3080f1b9ce
3 changed files with 25 additions and 15 deletions
|
@ -60,8 +60,10 @@ void workspace_consider_destroy(struct sway_workspace *ws);
|
|||
|
||||
char *workspace_next_name(const char *output_name);
|
||||
|
||||
bool workspace_switch(struct sway_workspace *workspace,
|
||||
bool no_auto_back_and_forth);
|
||||
struct sway_workspace *workspace_auto_back_and_forth(
|
||||
struct sway_workspace *workspace);
|
||||
|
||||
bool workspace_switch(struct sway_workspace *workspace);
|
||||
|
||||
struct sway_workspace *workspace_by_number(const char* name);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue