summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2007-04-25 14:02:44 +0000
committerMikael Magnusson <mikachu@comhem.se>2007-04-25 14:02:44 +0000
commit05560c929ba196c7f0abd8332ccb19650b2cf316 (patch)
treecee8d97da1f4878246e1f8ee2dfbf361a9860b8a /data
parentd9204860c3871ba79d73fa44a615804241bce76e (diff)
fix layer type to use above/below as in the code, not Top/Bottom
Diffstat (limited to 'data')
-rw-r--r--data/rc.xsd8
1 files changed, 5 insertions, 3 deletions
diff --git a/data/rc.xsd b/data/rc.xsd
index db3069af..15c426c3 100644
--- a/data/rc.xsd
+++ b/data/rc.xsd
@@ -47,6 +47,8 @@
Removing font shadows - they are going back into the themerc
Tue Apr 24 18:42:24 UTC 2007 - mikachu(a)openbox.org
Removed fourCorners option.
+ Wed Apr 25 14:02:40 UTC 2007
+ Fixed values for layer to be above/below, not top/bottom.
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://openbox.org/"
@@ -451,9 +453,9 @@
</xs:simpleType>
<xs:simpleType name="layer">
<xs:restriction base="xs:string">
- <xs:enumeration value="Top"/>
- <xs:enumeration value="Normal"/>
- <xs:enumeration value="Bottom"/>
+ <xs:enumeration value="above"/>
+ <xs:enumeration value="normal"/>
+ <xs:enumeration value="below"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="maximization">