You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2023. It is now read-only.
I tried to export an Action Bar icon. The page size in my inkscape document is set to 24x24 px.
Standard sizes for Action Bar icons are 24x24 for mdpi, 36x36 for hdpi etc. What I got was:
23x23 etc. In my case, changing some densities in python script helped:
group.add_density_option("mdpi", 96) #instead of 90
group.add_density_option("hdpi", 144)
group.add_density_option("xhdpi", 192)
I tried to export an Action Bar icon. The page size in my inkscape document is set to 24x24 px.
Standard sizes for Action Bar icons are 24x24 for mdpi, 36x36 for hdpi etc. What I got was:
23x23 etc. In my case, changing some densities in python script helped:
group.add_density_option("mdpi", 96) #instead of 90
group.add_density_option("hdpi", 144)
group.add_density_option("xhdpi", 192)
I don't know if this is really a bug or a misuse.