Bug 406871 - "Getting 32x32 px icons using -moz-icon" [p=reed r+sr=biesi a1.9=damons]

This commit is contained in:
reed@reedloden.com 2007-12-04 17:08:23 -08:00
parent 2b33f9ba22
commit d9ec6b9a1f
2 changed files with 4 additions and 0 deletions

View File

@ -231,6 +231,9 @@ moz_gtk_icon_size(const char *name)
if (strcmp(name, "toolbarsmall") == 0)
return GTK_ICON_SIZE_SMALL_TOOLBAR;
if (strcmp(name, "dnd") == 0)
return GTK_ICON_SIZE_DND;
if (strcmp(name, "dialog") == 0)
return GTK_ICON_SIZE_DIALOG;

View File

@ -57,6 +57,7 @@ static const char *kSizeStrings[] =
"toolbar",
"toolbarsmall",
"menu",
"dnd",
"dialog"
};