icon-theme: Use "Scale" for key as per the spec

The latest spec proposal uses "Scale", not "OutputScale", so use this.
This commit is contained in:
Alexander Larsson
2013-08-19 15:41:49 +02:00
parent 497f25730d
commit 8ae81bb395

View File

@ -3160,8 +3160,8 @@ theme_subdir_load (GtkIconTheme *icon_theme,
else
threshold = 2;
if (g_key_file_has_key (theme_file, subdir, "OutputScale", NULL))
scale = g_key_file_get_integer (theme_file, subdir, "OutputScale", NULL);
if (g_key_file_has_key (theme_file, subdir, "Scale", NULL))
scale = g_key_file_get_integer (theme_file, subdir, "Scale", NULL);
else
scale = 1;