]> err.no Git - mapper/commitdiff
Use "square" POI theme
authorKaj-Michael Lang <milang@angel.tal.org>
Thu, 25 Oct 2007 20:50:49 +0000 (23:50 +0300)
committerKaj-Michael Lang <milang@angel.tal.org>
Thu, 25 Oct 2007 20:50:49 +0000 (23:50 +0300)
src/map-poi.c

index e897ee4b822d70749bd4457a3084976260d203b9..42ac9e5bc0dd88bfdaed457f2078b70a172d7363 100644 (file)
@@ -23,6 +23,8 @@ static PangoLayout *layout = NULL;
 static PangoFontDescription *fontdesc = NULL;
 static GdkGC *poi_gc;
 
+static gchar *theme="square";
+
 gboolean 
 map_poi_init(GtkWidget *map_widget)
 {
@@ -59,8 +61,8 @@ GError *error = NULL;
 if (icon==NULL)
        return NULL;
 
-g_snprintf(buffer, sizeof(buffer), DATADIR "/map-icons/classic.%s/%s.png", 
-       (_zoom<2) ? "big" : "small", icon);
+g_snprintf(buffer, sizeof(buffer), DATADIR "/map-icons/%s.%s/%s.png", 
+       theme, (_zoom<2) ? "big" : "small", icon);
 
 pixbuf = g_hash_table_lookup(poi_icon_hash, buffer);
 if (pixbuf)