most proxy behavior is complete

This commit is contained in:
itsmattkc
2019-02-01 01:17:22 +11:00
parent c779ec43e7
commit 7a22065162
13 changed files with 245 additions and 23 deletions
+4
View File
@@ -250,6 +250,10 @@ bool LoadThread::load_worker(QFile& f, QXmlStreamReader& stream, int type) {
m->speed = attr.value().toDouble();
} else if (attr.name() == "alphapremul") {
m->alpha_is_premultiplied = (attr.value() == "1");
} else if (attr.name() == "proxy") {
m->proxy = (attr.value() == "1");
} else if (attr.name() == "proxypath") {
m->proxy_path = attr.value().toString();
}
}