]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/AnimateCtrl.py
The great wxVScrolledWindow refactoring: allow using it both horizontal and
[wxWidgets.git] / wxPython / demo / AnimateCtrl.py
index 789a430c99b250724f4536a9d1ce5668875702e1..276771ec5905129210d3a8b268feb606ebc56ffd 100644 (file)
@@ -25,10 +25,10 @@ class TestPanel(wx.Panel):
             ctrl = wx.animate.AnimationCtrl(self, -1, ani)
             ctrl.SetUseWindowBackgroundColour()
             ctrl.Play()
-            sizer.Add(ctrl, 0, wx.ALL, 10)
+            sizer.AddF(ctrl, wx.SizerFlags().Border(wx.ALL, 10))
 
         border = wx.BoxSizer()
-        border.Add(sizer, 1, wx.EXPAND|wx.ALL, 20)
+        border.AddF(sizer, wx.SizerFlags(1).Expand().Border(wx.ALL, 20))
         self.SetSizer(border)
         
 
@@ -46,7 +46,7 @@ overview = """<html><body>
 <h2><center>wx.animate.AnimationCtrl</center></h2>
 
 wx.animate.AnimationCtrl is like a wx.StaticBitmap but is able to
-display an animation by extracing frames from a multi-images GIF file.
+display an animation by extracing frames from a multi-image GIF file.
 
 </body></html>
 """