commit 008dd3f448a251cb276f68f19c1de0c7a5489b3a
parent 56cf81808302b89814f771b82a7a26edd0cd456c
Author: Denis Grelich <denisg@suckless.org>
Date: Thu, 21 Dec 2006 14:18:51 +0100
removed bordes when drawing tiles, no changes to the color tuples though
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/draw.c b/draw.c
@@ -68,7 +68,7 @@ loadfont(Blitz *blitz, BlitzFont *font) {
unsigned int
labelh(BlitzFont *font) {
- return font->height + 4;
+ return font->height + 2;
}
void
diff --git a/frame.c b/frame.c
@@ -28,7 +28,7 @@ create_frame(Client *c, View *v) {
f->tile.gc = c->gc;
f->tile.font = &def.font;
f->tile.color = def.normcolor;
- f->tile.border = True;
+ f->tile.border = false;
f->grabbox = f->titlebar = f->tile;
f->titlebar.align = WEST;
diff --git a/main.c b/main.c
@@ -340,7 +340,7 @@ main(int argc, char *argv[]) {
s->bbrush.rect.y = 0;
s->bbrush.color = def.normcolor;
s->bbrush.font = &def.font;
- s->bbrush.border = True;
+ s->bbrush.border = False;
draw_bar(s);
XMapRaised(blz.dpy, s->barwin);
}