Fix folder icon scale

This commit is contained in:
luboslenco
2020-04-12 11:00:09 +02:00
parent d4021b54de
commit 118a515060
+2 -2
View File
@@ -138,13 +138,13 @@ class UIFiles {
}
}
if (icon != null) {
state = ui.image(icon, 0xffffffff, rect.h);
state = ui.image(icon, 0xffffffff, 50 * ui.SCALE());
generic = false;
}
}
if (generic) {
state = ui.image(icons, col, rect.h, rect.x, rect.y, rect.w, rect.h);
state = ui.image(icons, col, 50 * ui.SCALE(), rect.x, rect.y, rect.w, rect.h);
}
if (state == Started) {