Implement new Theme

This commit is contained in:
Devine Lu Linvega
2018-02-13 09:29:16 +13:00
parent 7f889b9a4e
commit 86e9534562
5 changed files with 22 additions and 12 deletions

View File

@@ -37,8 +37,9 @@ function Interface()
{
var layer_path = "M150,50 L50,150 L150,250 L250,150 L150,50 Z ";
layer_path += dotgrid.tool.index > 0 ? "M105,150 L105,150 L150,105 L195,150" : "";
layer_path += dotgrid.tool.index > 1 ? "M105,150 L105,150 L150,195 L195,150" : "";
layer_path += dotgrid.tool.index == 0 ? "M105,150 L105,150 L150,105 L195,150" : "";
layer_path += dotgrid.tool.index == 1 ? "M105,150 L195,150" : "";
layer_path += dotgrid.tool.index == 2 ? "M105,150 L105,150 L150,195 L195,150" : "";
document.getElementById("export").children[0].setAttribute("d",layer_path);