When renaming a workspace, update the previous_workspace_name too

Fixes #3694
This commit is contained in:
Albert Safin
2019-10-09 07:47:51 +00:00
parent 465447a96b
commit 7e4eb51d23
2 changed files with 54 additions and 0 deletions

View File

@ -2013,6 +2013,13 @@ void cmd_rename_workspace(I3_CMD, const char *old_name, const char *new_name) {
con_focus(previously_focused);
}
/* Let back-and-forth work after renaming the previous workspace.
* See #3694. */
if (previous_workspace_name && !strcmp(previous_workspace_name, old_name_copy)) {
FREE(previous_workspace_name);
previous_workspace_name = sstrdup(new_name);
}
cmd_output->needs_tree_render = true;
ysuccess(true);