From 5a8521865ded882e77f0b627e9b4b4fee126ac53 Mon Sep 17 00:00:00 2001 From: uberj Date: Tue, 17 Apr 2012 01:31:14 -0700 Subject: [PATCH] removed logging statements. --- libqtile/layout/xmonad.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/libqtile/layout/xmonad.py b/libqtile/layout/xmonad.py index 984d5b42ee..10e043d495 100644 --- a/libqtile/layout/xmonad.py +++ b/libqtile/layout/xmonad.py @@ -238,9 +238,7 @@ def configure(self, c, screen): # if client in this layout if self.clients and c in self.clients: # single client - fullscreen - self.log("HERE") if len(self.clients) == 1: - self.log("HERE2") px = self.group.qtile.colorPixel(self.border_focus) c.place(self.group.screen.dx, self.group.screen.dy, @@ -251,18 +249,13 @@ def configure(self, c, screen): return # multiple clients else: - self.log("HERE3") # determine focus border-color if self.focused is None: - self.log("HERE4") px = self.group.qtile.colorPixel(self.border_normal) elif self.clients.index(c) == self.focused: - self.log("HERE5") px = self.group.qtile.colorPixel(self.border_focus) else: - self.log("HERE6") px = self.group.qtile.colorPixel(self.border_normal) - self.log("px is: {0}".format(px)) # calculate main/secondary column widths width_main = int(self.group.screen.dwidth * self.ratio)