summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2011-01-28 13:25:32 -0500
committerDana Jansens <danakj@orodu.net>2011-08-01 11:50:16 -0400
commit5b2ed63cb4d97c3a0492de272517a1c054949a8d (patch)
tree794555359914bafcbe496fe97b23cf801dc614f9 /data
parent2288da0ae3b44c987687e3deeb7864fcb7b23bb9 (diff)
Fix bug #4877 (Some harmless code quirks involving booleans)
Diffstat (limited to 'data')
-rw-r--r--data/rc.xsd9
1 files changed, 8 insertions, 1 deletions
diff --git a/data/rc.xsd b/data/rc.xsd
index 03a38e5b..ad96994a 100644
--- a/data/rc.xsd
+++ b/data/rc.xsd
@@ -171,7 +171,7 @@
<xsd:element minOccurs="0" name="edge" type="xsd:string"/>
<xsd:element minOccurs="0" name="wrap" type="ob:bool"/>
<xsd:element minOccurs="0" name="follow" type="ob:bool"/>
- <xsd:element minOccurs="0" name="dialog" type="ob:bool"/>
+ <xsd:element minOccurs="0" name="dialog" type="ob:dialogtype"/>
<xsd:element minOccurs="0" name="panels" type="ob:bool"/>
<xsd:element minOccurs="0" name="here" type="ob:bool"/>
<xsd:element minOccurs="0" name="linear" type="ob:bool"/>
@@ -541,4 +541,11 @@
<xsd:enumeration value="Nonpixel"/>
</xsd:restriction>
</xsd:simpleType>
+ <xsd:simpleType name="dialogtype">
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="None"/>
+ <xsd:enumeration value="Icons"/>
+ <xsd:enumeration value="List"/>
+ </xsd:restriction>
+ </xsd:simpleType>
</xsd:schema>