From 72a76fc0f9503a59e927cb9c2923278c2d2c37dd Mon Sep 17 00:00:00 2001 From: Gregory Soutade Date: Thu, 8 Jan 2015 20:57:56 +0100 Subject: [PATCH] Move icons into resources/icon/other --- display.py | 2 +- resources/icon/{ => other}/vh.png | Bin resources/icon/{ => other}/vk.png | Bin resources/icon/{ => other}/vp.png | Bin resources/icon/{ => other}/vu.png | Bin resources/icon/{ => other}/vv.png | Bin 6 files changed, 1 insertion(+), 1 deletion(-) rename resources/icon/{ => other}/vh.png (100%) rename resources/icon/{ => other}/vk.png (100%) rename resources/icon/{ => other}/vp.png (100%) rename resources/icon/{ => other}/vu.png (100%) rename resources/icon/{ => other}/vv.png (100%) diff --git a/display.py b/display.py index 16c4593..e70a8af 100644 --- a/display.py +++ b/display.py @@ -229,7 +229,7 @@ class DisplayHTMLBlockTableWithGraph(DisplayHTMLBlockTable): elif style.startswith(u'iwla_visit'): icon = u'vv.png' else: return '' - return u'/%s/%s' % (self.icon_path, icon) + return u'/%s/other/%s' % (self.icon_path, icon) def _buildHTML(self): self._computeMax() diff --git a/resources/icon/vh.png b/resources/icon/other/vh.png similarity index 100% rename from resources/icon/vh.png rename to resources/icon/other/vh.png diff --git a/resources/icon/vk.png b/resources/icon/other/vk.png similarity index 100% rename from resources/icon/vk.png rename to resources/icon/other/vk.png diff --git a/resources/icon/vp.png b/resources/icon/other/vp.png similarity index 100% rename from resources/icon/vp.png rename to resources/icon/other/vp.png diff --git a/resources/icon/vu.png b/resources/icon/other/vu.png similarity index 100% rename from resources/icon/vu.png rename to resources/icon/other/vu.png diff --git a/resources/icon/vv.png b/resources/icon/other/vv.png similarity index 100% rename from resources/icon/vv.png rename to resources/icon/other/vv.png