mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-30 16:58:40 -04:00
*** empty log message ***
This commit is contained in:
parent
98cf3c80b1
commit
468c1040a3
@ -276,14 +276,14 @@ class ParticlePanel(Pmw.MegaToplevel):
|
|||||||
kw['min'] = min
|
kw['min'] = min
|
||||||
kw['initialValue'] = min
|
kw['initialValue'] = min
|
||||||
kw['resolution'] = resolution
|
kw['resolution'] = resolution
|
||||||
widget = apply(floater.Floater, (parent,), kw)
|
widget = apply(Floater.Floater, (parent,), kw)
|
||||||
widget.pack(fill = X)
|
widget.pack(fill = X)
|
||||||
self.balloon.bind(widget, balloonHelp)
|
self.balloon.bind(widget, balloonHelp)
|
||||||
return widget
|
return widget
|
||||||
|
|
||||||
def createAngleDial(self, parent, text, balloonHelp, **kw):
|
def createAngleDial(self, parent, text, balloonHelp, **kw):
|
||||||
kw['text'] = text
|
kw['text'] = text
|
||||||
widget = apply(dial.AngleDial,(parent,), kw)
|
widget = apply(Dial.AngleDial,(parent,), kw)
|
||||||
widget.pack(fill = X)
|
widget.pack(fill = X)
|
||||||
self.balloon.bind(widget, balloonHelp)
|
self.balloon.bind(widget, balloonHelp)
|
||||||
return widget
|
return widget
|
||||||
@ -291,7 +291,7 @@ class ParticlePanel(Pmw.MegaToplevel):
|
|||||||
def createVector3Entry(self, parent, text, balloonHelp, **kw):
|
def createVector3Entry(self, parent, text, balloonHelp, **kw):
|
||||||
# Set label's text
|
# Set label's text
|
||||||
kw['text'] = text
|
kw['text'] = text
|
||||||
widget = apply(vectorWidgets.Vector3Entry, (parent,), kw)
|
widget = apply(VectorWidgets.Vector3Entry, (parent,), kw)
|
||||||
widget.pack(fill = X)
|
widget.pack(fill = X)
|
||||||
self.balloon.bind(widget, balloonHelp)
|
self.balloon.bind(widget, balloonHelp)
|
||||||
return widget
|
return widget
|
||||||
@ -299,7 +299,7 @@ class ParticlePanel(Pmw.MegaToplevel):
|
|||||||
def createColorEntry(self, parent, text, balloonHelp, **kw):
|
def createColorEntry(self, parent, text, balloonHelp, **kw):
|
||||||
# Set label's text
|
# Set label's text
|
||||||
kw['text'] = text
|
kw['text'] = text
|
||||||
widget = apply(vectorWidgets.ColorEntry, (parent,) ,kw)
|
widget = apply(VectorWidgets.ColorEntry, (parent,) ,kw)
|
||||||
widget.pack(fill = X)
|
widget.pack(fill = X)
|
||||||
self.balloon.bind(widget, balloonHelp)
|
self.balloon.bind(widget, balloonHelp)
|
||||||
return widget
|
return widget
|
||||||
|
Loading…
x
Reference in New Issue
Block a user