From 8349e4ca6ba679a6a43cd56a282502eacafc580d Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 5 Jun 2007 15:57:27 +0000 Subject: add osd border stuff --- tools/themetoxml/themetoxml.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tools') diff --git a/tools/themetoxml/themetoxml.c b/tools/themetoxml/themetoxml.c index 8e3ce40c..5c7ac8af 100644 --- a/tools/themetoxml/themetoxml.c +++ b/tools/themetoxml/themetoxml.c @@ -342,12 +342,16 @@ int main(int argc, char **argv) if (read_int(db, "borderWidth", &i)) { CONT3("dimensions", "window", "border", NUM(i)); CONT3("dimensions", "menu", "border", NUM(i)); + CONT3("dimensions", "osd", "border", NUM(i)); } else if (read_int(db, "border.width", &i)) { CONT3("dimensions", "window", "border", NUM(i)); CONT3("dimensions", "menu", "border", NUM(i)); + CONT3("dimensions", "osd", "border", NUM(i)); } if (read_int(db, "menu.border.width", &i)) CONT3("dimensions", "menu", "border", NUM(i)); + if (read_int(db, "osd.border.width", &i)) + CONT3("dimensions", "osd", "border", NUM(i)); if (read_color(db, "border.color", &i, &j, &k)) { COLOR3("window", "active", "border", i, j, k, 255); -- cgit v1.2.3