Fix var module warning

This commit is contained in:
Charles Gagnon
2019-09-13 11:40:01 -04:00
parent 80d6986cd9
commit 4e50f71067
3 changed files with 15 additions and 1 deletions

View File

@@ -53,7 +53,7 @@ const _ = imports.gettext.domain(Utils.TRANSLATION_DOMAIN).gettext;
let LABEL_GAP = 5;
let MAX_INDICATORS = 4;
const DEFAULT_PADDING_SIZE = 4;
var DEFAULT_PADDING_SIZE = 4;
let DOT_STYLE = {
DOTS: "DOTS",

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 48">
<g fill="#000000">
<rect y="2" width="1" height="1" opacity="0.5"/>
<rect y="0" width="1" height="2" opacity="0.2"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 235 B

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 48">
<g fill="#000000">
<rect y="45" width="1" height="1" opacity="0.5"/>
<rect y="46" width="1" height="2" opacity="0.2"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 237 B