Bugfix: Delay event-subscription until reconnect (thx aniou)

This commit is contained in:
Axel Wagner
2011-07-31 18:26:52 +02:00
parent 8d09ed7bf5
commit 3302b22f71
2 changed files with 17 additions and 11 deletions

View File

@ -44,7 +44,13 @@ void retry_connection(struct ev_loop *loop, ev_timer *w, int events) {
retries = 8;
ev_timer_stop(loop, w);
subscribe_events();
reconfig_windows();
/* We get the current outputs and workspaces, to
* reconfigure all bars with the current configuration */
i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_OUTPUTS, NULL);
if (!config.disable_ws) {
i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_WORKSPACES, NULL);
}
}
/*