Skip to content

Commit

Permalink
#203 ..
Browse files Browse the repository at this point in the history
  • Loading branch information
koekeishiya committed Jul 1, 2020
1 parent 12b0544 commit 622f6e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/window.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ void window_serialize(FILE *rsp, struct window *window)
snprintf(split, sizeof(split), "%s", window_node_split_str[node && node->parent ? node->parent->split : 0]);
bool zoom_parent = node && node->zoom && node->zoom == node->parent;
bool zoom_fullscreen = node && node->zoom && node->zoom == view->root;
bool stack_index = node && node->window_count > 1 ? window_node_index_of_window(node, window->id)+1 : 0;
int stack_index = node && node->window_count > 1 ? window_node_index_of_window(node, window->id)+1 : 0;

fprintf(rsp,
"{\n"
Expand Down

0 comments on commit 622f6e0

Please sign in to comment.