mirror of
https://github.com/Queercon/QC14-Badge-Webview.git
synced 2025-08-14 18:47:38 -07:00
Two different forms of the "clear" icon.
This commit is contained in:
parent
c3bfdab734
commit
d984d28a16
1 changed files with 12 additions and 2 deletions
|
@ -70,6 +70,7 @@
|
|||
imgname[47] = "/images/48-eb4ce412-61c2-11e7-a915-d794e6b54cea.png";
|
||||
|
||||
|
||||
imgname[98] = "/images/clear2.png";
|
||||
imgname[99] = "/images/clear.png";
|
||||
|
||||
string[] imgdesc = new string[100];
|
||||
|
@ -124,6 +125,7 @@
|
|||
imgdesc[47] = "/images/48-eb4ce412-61c2-11e7-a915-d794e6b54cea.png";
|
||||
|
||||
|
||||
imgdesc[98] = " ";
|
||||
imgdesc[99] = " ";
|
||||
|
||||
string[] img = new string[48];
|
||||
|
@ -141,8 +143,16 @@
|
|||
}
|
||||
else
|
||||
{
|
||||
img[i] = imgname[99];
|
||||
desc[i] = imgdesc[99];
|
||||
if (i == 4)
|
||||
{
|
||||
img[i] = imgname[98];
|
||||
desc[i] = imgdesc[98];
|
||||
}
|
||||
else
|
||||
{
|
||||
img[i] = imgname[99];
|
||||
desc[i] = imgdesc[99];
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue