=== modified file 'data/templates/ubuntu-application/edit.py' --- data/templates/ubuntu-application/edit.py 2010-10-15 20:26:19 +0000 +++ data/templates/ubuntu-application/edit.py 2010-11-19 00:23:47 +0000 @@ -58,9 +58,6 @@ editor = quicklyutils.get_quickly_editors() # if editor is still gedit, launch it in background if editor == "gedit": - command = ["gedit"] - command.extend(filelist.split(" ")) - subprocess.call(command) -else: - os.system("%s %s" % (editor, filelist)) + filelist += " &" +os.system("%s %s" % (editor, filelist))