Fix bug while closing specific file editors
authorlaurent
Mon, 23 Jul 2012 02:53:02 +0200
changeset 792 fd113777d1ae
parent 791 67b47775ba21
child 793 1b24b970a816
Fix bug while closing specific file editors
ProjectController.py
--- a/ProjectController.py	Wed Jul 18 01:33:48 2012 +0200
+++ b/ProjectController.py	Mon Jul 23 02:53:02 2012 +0200
@@ -1041,7 +1041,7 @@
         if self._ProjectFilesView == view:
             self._ProjectFilesView = None
         if view in self._FileEditors.values():
-            self._FileEditors.pop(view.GetTagName())
+            self._FileEditors.pop(view.GetFilePath())
 
     def _Clean(self):
         self._CloseView(self._IECCodeView)