Explorar el Código

Fix icons path

Kentaro Wada hace 6 años
padre
commit
8aa9bbc7b6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      labelme/utils/qt.py

+ 1 - 1
labelme/utils/qt.py

@@ -12,7 +12,7 @@ here = osp.dirname(osp.abspath(__file__))
 
 
 def newIcon(icon):
-    icons_dir = osp.join(here, 'icons')
+    icons_dir = osp.join(here, '../icons')
     return QtGui.QIcon(osp.join(':/', icons_dir, '%s.png' % icon))