]> Dogcows Code - chaz/openbox/blobdiff - tools/themetoxml/themetoxml.c
add osd border stuff
[chaz/openbox] / tools / themetoxml / themetoxml.c
index 8e3ce40c8fa3b193296a5300bb58d3e094d24a96..5c7ac8af56c95228f4115dfc3a1bbb4b803db38a 100644 (file)
@@ -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);
This page took 0.019917 seconds and 4 git commands to generate.