From: Christian Heller <c.heller@plomlompom.de>
Date: Tue, 23 Apr 2013 03:49:39 +0000 (+0200)
Subject: Removed redundant call to update_windows().
X-Git-Tag: tce~1345
X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/%7B%7Bdb.prefix%7D%7D/static/gitweb.js?a=commitdiff_plain;h=2b45d53d4e74e790b733610e513a41cbe608ca66;p=plomrogue

Removed redundant call to update_windows().
---

diff --git a/windows.c b/windows.c
index 29b4446..b71177f 100644
--- a/windows.c
+++ b/windows.c
@@ -224,5 +224,4 @@ void shift_window (struct WinMeta * win_meta, char dir) {
           append_window(win_meta, wins[i]);
     free(wins);
     win_meta->active = win_shift;
-    update_windows(win_meta, win_meta->chain_start);
     draw_all_windows(win_meta); } }