summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-05 15:57:27 +0000
committerDana Jansens <danakj@orodu.net>2007-06-05 15:57:27 +0000
commit8349e4ca6ba679a6a43cd56a282502eacafc580d (patch)
tree22c7afbafb3c567e75fb1bec39d823bfbf479f62 /tools
parentaca8327244e0e1ebc4e367a57339ff2dc944782c (diff)
add osd border stuff
Diffstat (limited to 'tools')
-rw-r--r--tools/themetoxml/themetoxml.c4
1 files changed, 4 insertions, 0 deletions
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);