mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 06:05:58 -06:00
ide: Fixed IconDes problem with missing IDs
This commit is contained in:
parent
dbd357833d
commit
c66e8f386c
2 changed files with 5 additions and 4 deletions
|
|
@ -294,10 +294,11 @@ String SaveIml(const Array<ImlImage>& iml, int format, const String& eol) {
|
|||
int scale = ImlFlagsToDPIScale(c.flags);
|
||||
if(saved_names.Find(c.name) < 0)
|
||||
saved_names.FindAdd(c.name);
|
||||
else
|
||||
else {
|
||||
out << "__" << AsString(scale * 50);
|
||||
if(c.flags & IML_IMAGE_FLAG_DARK)
|
||||
out << "__DARK";
|
||||
if(c.flags & IML_IMAGE_FLAG_DARK)
|
||||
out << "__DARK";
|
||||
}
|
||||
out << ")";
|
||||
if(c.exp)
|
||||
out << " IMAGE_META(\"exp\", \"\")";
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ IMAGE_ID(HelpAll)
|
|||
IMAGE_ID(show)
|
||||
IMAGE_ID(tpp_pen)
|
||||
IMAGE_ID(tpp_doc)
|
||||
IMAGE_ID(svn__DARK)
|
||||
IMAGE_ID(svn)
|
||||
IMAGE_ID(svn__200)
|
||||
IMAGE_ID(svn__100)
|
||||
IMAGE_ID(svn__100__DARK)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue