added startTk flags

This commit is contained in:
Mark Mine 2004-05-25 00:54:11 +00:00
parent be718ced33
commit b42bde4b2e

View File

@ -900,14 +900,12 @@
def place(self):
base.startTk()
base.startDirect()
base.startDirect(fWantTk = 1)
import Placer
return Placer.place(self)
def explore(self):
base.startTk()
base.startDirect()
base.startDirect(fWantTk = 1)
import SceneGraphExplorer
return SceneGraphExplorer.explore(self)
@ -917,11 +915,11 @@
return Slider.rgbPanel(self, cb)
def select(self):
base.startDirect()
base.startDirect(fWantTk = 0)
direct.select(self)
def deselect(self):
base.startDirect()
base.startDirect(fWantTk = 0)
direct.deselect(self)
def showCS(self, mask = None):