changeset 21:dea1e1d6d439

shared Listbox problem solved. exportselection=0!
author dmcc
date Sun, 07 Jul 2002 07:09:37 +0000
parents 6eafd86930b5
children 626aa2179630
files light8/Subs.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/light8/Subs.py	Sun Jul 07 06:58:03 2002 +0000
+++ b/light8/Subs.py	Sun Jul 07 07:09:37 2002 +0000
@@ -72,7 +72,7 @@
     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()