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
 
@@ -49,20 +49,20 @@ class EditChoice(tk.Frame):
 
      the sub has 'never been dragged out of this subcomposer
 
      session'? But subs will also show up in other viewers and
 
      finders.
 

	
 
    - 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')
 

	
 
        self.subIcon = tk.Label(self.currentLinkFrame, text="...",
 
                                borderwidth=2, relief='raised',
 
                                padx=10, pady=10)
0 comments (0 inline, 0 general)