From 8877ef30ff7322e9a3c330e0c461728e111f6353 Mon Sep 17 00:00:00 2001 From: Kaj-Michael Lang Date: Sun, 14 Oct 2007 13:45:27 +0300 Subject: [PATCH] Check for _zoom < 2 for big icons --- src/map-poi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map-poi.c b/src/map-poi.c index e680624..e897ee4 100644 --- a/src/map-poi.c +++ b/src/map-poi.c @@ -60,7 +60,7 @@ if (icon==NULL) return NULL; g_snprintf(buffer, sizeof(buffer), DATADIR "/map-icons/classic.%s/%s.png", - (_zoom==1) ? "big" : "small", icon); + (_zoom<2) ? "big" : "small", icon); pixbuf = g_hash_table_lookup(poi_icon_hash, buffer); if (pixbuf) -- 2.39.5