aboutsummaryrefslogtreecommitdiff
path: root/src/draw.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/draw.h')
-rw-r--r--src/draw.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/draw.h b/src/draw.h
index 3d3f7ed..35a9f68 100644
--- a/src/draw.h
+++ b/src/draw.h
@@ -16,6 +16,7 @@ struct Drawable {
int right_pad;
int top_pad;
double alpha;
+ int line_w;
GList *layouts;
PangoFontDescription *desc;
};
@@ -28,7 +29,7 @@ typedef struct {
PangoLayout *pl;
} Layout;
-Drawable *draw_create(const char *font, int height, int left_pad, int right_pad, int top_pad, double alpha);
+Drawable *draw_create(const char *font, int height, int left_pad, int right_pad, int top_pad, double alpha, int line_w);
void draw_compute_layout(Drawable *draw, Window *win, GList *btns);