X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/42463de2678493f48631c42b4d1a7152c2786893..a2cffa18c952f435607fe0397d5258fa61d3da99:/wxPython/wx/lib/floatcanvas/FloatCanvas.py diff --git a/wxPython/wx/lib/floatcanvas/FloatCanvas.py b/wxPython/wx/lib/floatcanvas/FloatCanvas.py index 83865fbc34..0d5142fcab 100644 --- a/wxPython/wx/lib/floatcanvas/FloatCanvas.py +++ b/wxPython/wx/lib/floatcanvas/FloatCanvas.py @@ -942,18 +942,22 @@ class ScaledText(DrawObject, TextObjectMixin, XYObjectMixin): Family: Font family, a generic way of referring to fonts without - specifying actual facename. One of: + specifying actual facename. One of:: wx.DEFAULT: Chooses a default font. wx.DECORATI: A decorative font. wx.ROMAN: A formal, serif font. wx.SCRIPT: A handwriting font. wx.SWISS: A sans-serif font. wx.MODERN: A fixed pitch font. + NOTE: these are only as good as the wxWindows defaults, which aren't so good. + Style: One of wx.NORMAL, wx.SLANT and wx.ITALIC. + Weight: One of wx.NORMAL, wx.LIGHT and wx.BOLD. + Underline: The value can be True or False. At present this may have an an effect on Windows only. @@ -1602,6 +1606,8 @@ class FloatCanvas(wx.Panel): """ #print "In Draw" + if self.PanelSize < (1,1): + return if self.Debug: start = clock() ScreenDC = wx.ClientDC(self) ViewPortWorld = ( self.PixelToWorld((0,0)), @@ -1644,7 +1650,6 @@ class FloatCanvas(wx.Panel): ViewPortBB, self._ForegroundHTdc) ScreenDC.Blit(0, 0, self.PanelSize[0],self.PanelSize[1], dc, 0, 0) -## wx.GetApp().Yield(True) # If the canvas is in the middle of a zoom or move, the Rubber Band box needs to be re-drawn # This seeems out of place, but it works. if self.PrevRBBox: @@ -1951,8 +1956,8 @@ def _makeFloatCanvasAddMethods(): ## lrk's code for doing this in module __init_ addshapemethod = getaddshapemethod() methodname = "Add" + classname setattr(FloatCanvas, methodname, addshapemethod) - docstring = "Creates %s and adds its reference to the canvas.\n" % classname - docstring += "Argument protocol same as %s class" % classname + docstring = " Creates %s and adds its reference to the canvas.\n" % classname + docstring += " Argument protocol same as %s class" % classname if klass.__doc__: docstring += ", whose docstring is:\n%s" % klass.__doc__ FloatCanvas.__dict__[methodname].__doc__ = docstring