From e5ce86d84f4c697621182b63ce6c0a96fea2df70 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 22 May 2004 03:01:08 +0000 Subject: [PATCH] Fix printing? git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27389 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wx/lib/plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wxPython/wx/lib/plot.py b/wxPython/wx/lib/plot.py index bab8d54762..109f89331a 100644 --- a/wxPython/wx/lib/plot.py +++ b/wxPython/wx/lib/plot.py @@ -1136,7 +1136,7 @@ class PlotPrintout(wx.Printout): return False def GetPageInfo(self): - return (0, 1, 1, 1) # disable page numbers + return (1, 1, 1, 1) # disable page numbers def OnPrintPage(self, page): dc = FloatDCWrapper(self.GetDC()) # allows using floats for certain functions -- 2.47.2