Changeset - dea1e1d6d439
[Not reviewed]
default
0 1 0
dmcc - 22 years ago 2002-07-07 07:09:37

shared Listbox problem solved. exportselection=0!
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
light8/Subs.py
Show inline comments
 
@@ -72,7 +72,7 @@ class ListParam(Param):
 
    def draw_tk(self, frame):
 
        self.l = Listbox(frame, selectmode=self.selectmode, font=stdfont,
 
                         width=max([len(o) for o in self.options]),
 
                         height=len(self.options))
 
                         height=len(self.options), exportselection=0)
 
        for o in self.options:
 
            self.l.insert(END, o)
 
        self.l.pack()
0 comments (0 inline, 0 general)