From 4a9608453a6010979e3c99edabeaf2061edd8c49 Mon Sep 17 00:00:00 2001
From: Treeki <treeki@gmail.com>
Date: Tue, 24 Jul 2012 04:18:54 +0200
Subject: finished up the UI for editing unlocks, and the parser

---
 src/editorui/paths.py | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

(limited to 'src/editorui')

diff --git a/src/editorui/paths.py b/src/editorui/paths.py
index a0e65d6..43a1465 100644
--- a/src/editorui/paths.py
+++ b/src/editorui/paths.py
@@ -593,10 +593,15 @@ class KPEditorPath(QtGui.QGraphicsLineItem):
 		# modify the unlock settings
 		from unlock import KPUnlockSpecDialog
 		
-		# todo: set the existing thing there
-		result = KPUnlockSpecDialog.exec_()
+		dlg = KPUnlockSpecDialog('path', 'unlocked')
+
+		if hasattr(self._pathRef(), 'unlockSpec'):
+			dlg.setSpec(self._pathRef().unlockSpec)
+
+		result = dlg.exec_()
 		if result == QtGui.QDialog.Accepted:
-			print "OK!"
+			print "New spec:", dlg.spec
+			self._pathRef().unlockSpec = dlg.spec
 
 
 	def updatePosition(self):
-- 
cgit v1.2.3