Merge pull request #245 from mrxiaozhuox/master

This commit is contained in:
Jonathan Kelley 2022-02-14 07:56:34 -05:00 committed by GitHub
commit a7e0fffb43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 2 deletions

View file

Before

Width:  |  Height:  |  Size: 75 KiB

After

Width:  |  Height:  |  Size: 75 KiB

View file

@ -88,7 +88,7 @@ impl DesktopConfig {
impl DesktopConfig {
pub(crate) fn with_default_icon(mut self) -> Self {
let bin: &[u8] = include_bytes!("default_icon.bin");
let bin: &[u8] = include_bytes!("./assets/default_icon.bin");
let rgba = Icon::from_rgba(bin.to_owned(), 460, 460).expect("image parse failed");
self.window.window.window_icon = Some(rgba);
self

View file

@ -102,10 +102,11 @@ export class Interpreter {
SetAttribute(root, field, value, ns) {
const name = field;
const node = this.nodes[root];
console.log(ns);
if (ns === "style") {
// @ts-ignore
node.style[name] = value;
} else if (ns != null || ns !== undefined) {
} else if (ns != null || ns != undefined) {
node.setAttributeNS(ns, name, value);
} else {
switch (name) {