mirror of https://github.com/buggins/dlangui.git
Bump arsd version
This commit is contained in:
parent
98f98c64fc
commit
7af4c4f2a3
4
dub.json
4
dub.json
|
@ -34,8 +34,8 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"inilike": "~>1.2.2",
|
"inilike": "~>1.2.2",
|
||||||
"icontheme": "~>1.2.3",
|
"icontheme": "~>1.2.3",
|
||||||
"arsd-official:dom": "<11.0.0",
|
"arsd-official:dom": "~>11.5.3",
|
||||||
"arsd-official:image_files": "<11.0.0"
|
"arsd-official:image_files": "~>11.5.3"
|
||||||
},
|
},
|
||||||
|
|
||||||
"subPackages": [
|
"subPackages": [
|
||||||
|
|
|
@ -1674,10 +1674,6 @@ bool loadTheme(Theme theme, XmlDocument doc, int level = 0) {
|
||||||
foreach(styleitem; doc.root.childNodes) {
|
foreach(styleitem; doc.root.childNodes) {
|
||||||
if (styleitem.tagName.equal("style")) {
|
if (styleitem.tagName.equal("style")) {
|
||||||
// load <style>
|
// load <style>
|
||||||
if(styleitem.children.length > 0)
|
|
||||||
{
|
|
||||||
styleitem.innerHTML(styleitem.children[0].nodeValue, true); // HACK by adr
|
|
||||||
}
|
|
||||||
string styleid = attrValue(styleitem, "id");
|
string styleid = attrValue(styleitem, "id");
|
||||||
string styleparent = attrValue(styleitem, "parent");
|
string styleparent = attrValue(styleitem, "parent");
|
||||||
if (styleid.length) {
|
if (styleid.length) {
|
||||||
|
|
Loading…
Reference in New Issue