ID:2130611
 
Applies to:
Status: Open

Issue hasn't been assigned a status value.
The ability to scale a icon_state in a dmi file scale it by two or in half to allow for fast modification if you're wanting to go 32x32 to 16x16 or such.

Would be useful when needing to resize icons without wanting to use animate() to make them all blurry and such ;(
client/verb/scale_icon_2x(Icon as icon)
var
icon/i = icon(Icon)
new_width = i.Width() * 2
new_height = i.Height() * 2
i.Scale(new_width, new_height)
src << ftp(i, "[new_width]x[new_height] [Icon]")
It would be great if given the option in the Icon Editor.