Revert "Add 128x128 hicolor as possible icon path"

This PR was submitted in bad faith by a bad actor, didn't do anything useful, and was only accepted out of diplomacy. That was a mistake. Reverting.
This reverts commit 55de086026.
master
Jonathan Moore Liles 2021-01-26 17:05:13 -08:00
parent f76de32c44
commit e909d9594b
1 changed files with 1 additions and 2 deletions

View File

@ -86,7 +86,6 @@ get_program_icon ( const char *name )
"/usr/local/share/pixmaps/%s.png",
"/usr/local/share/pixmaps/%s.xpm",
"/usr/share/icons/hicolor/32x32/apps/%s.png",
"/usr/share/icons/hicolor/128x128/apps/%s.png",
"/usr/share/pixmaps/%s.png",
"/usr/share/pixmaps/%s.xpm",
};
@ -97,7 +96,7 @@ get_program_icon ( const char *name )
asprintf( &icon_p, tries[i], name );
Fl_Image *img = Fl_Shared_Image::get( icon_p, 32, 32 );
Fl_Image *img = Fl_Shared_Image::get( icon_p );
free( icon_p );