Changeset - df3220bb7a2d
[Not reviewed]
default
0 1 0
drewp@bigasterisk.com - 12 years ago 2013-06-05 23:28:07
drewp@bigasterisk.com
make EditChoice prompt configurable
Ignore-this: 731efbaa464350a0a416b0892726e531
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
light9/editchoice.py
Show inline comments
 
@@ -52,14 +52,14 @@ class EditChoice(tk.Frame):
 

	
 
    - list of recent resources that this choice was set to
 
    """
 
    def __init__(self, parent, graph, resourceObservable):
 
    def __init__(self, parent, graph, resourceObservable, label="Editing:"):
 
        """
 
        getResource is called to get the URI of the currently
 
        """
 
        self.graph = graph
 
        self.frame = tk.Frame(parent, relief='raised', border=2)
 
        self.frame.pack(side='top')
 
        tk.Label(self.frame, text="Editing:").pack(side='left')
 
        tk.Label(self.frame, text=label).pack(side='left')
 
        self.currentLinkFrame = tk.Frame(self.frame)
 
        self.currentLinkFrame.pack(side='left')
 

	
0 comments (0 inline, 0 general)