Skip to content

Commit

Permalink
removed logging statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
uberj committed Apr 17, 2012
1 parent fd28d5c commit 5a85218
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions libqtile/layout/xmonad.py
Expand Up @@ -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,
Expand All @@ -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)
Expand Down

0 comments on commit 5a85218

Please sign in to comment.