diff -r e1c0af081a8e -r 16e55845cff0 Plugins/ViewManagerPlugins/Listspace/Listspace.py --- a/Plugins/ViewManagerPlugins/Listspace/Listspace.py Sun Oct 02 20:06:38 2011 +0200 +++ b/Plugins/ViewManagerPlugins/Listspace/Listspace.py Mon Oct 03 12:51:39 2011 +0200 @@ -473,6 +473,8 @@ self.viewlist.item(index).setIcon(UI.PixmapCache.getIcon("syntaxError.png")) elif editor.hasFlakesWarnings(): self.viewlist.item(index).setIcon(UI.PixmapCache.getIcon("warning.png")) + elif editor.isModified(): + self.viewlist.item(index).setIcon(UI.PixmapCache.getIcon("fileModified.png")) else: self.viewlist.item(index).setIcon(UI.PixmapCache.getIcon("empty.png")) self.viewlist.setCurrentRow(currentRow)