[Fix] resedit: Double click system selection bug.

This commit is contained in:
Allanis 2013-04-13 21:36:20 +01:00
parent 1f0796919c
commit 046f7d8eb9
4 changed files with 3 additions and 3 deletions

View File

@ -81,7 +81,7 @@ def save(xmlfile, data, basetag, tag, has_name=True, do_array=None):
xml.appendChild(base)
fp = open(xmlfile, "w")
xml.writexml(fp, "", "", "\n", "UTF-8")
xml.writexml(fp, "", "", "", "UTF-8")
xml.unlink()

Binary file not shown.

View File

@ -250,7 +250,7 @@ class space:
if abs(sx-mx) < r and abs(sy-my) < r:
if event.button == 1 and event.type == gtk.gdk._2BUTTON_PRESS:
tree = self.__swidget("treSystems")
self.__selfSys(name)
self.__selSys(name)
elif event.button == 1:
self.space_sel = name
self.__space_draw()

Binary file not shown.