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