From 67242fb6b4e73c43efb9987d4b6a032375b0469d Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 16 Jul 2016 08:59:38 -0700 Subject: [PATCH] Add a message dlg explaining how to see the demo samples. --- wx/lib/plot/examples/demo.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wx/lib/plot/examples/demo.py b/wx/lib/plot/examples/demo.py index 425c68ab..bcca212c 100644 --- a/wx/lib/plot/examples/demo.py +++ b/wx/lib/plot/examples/demo.py @@ -305,6 +305,10 @@ class DemoApp(object): self.app = wx.App() self.frame = MainFrame(None, -1, "PlotCanvas") self.frame.Show(True) + wx.CallAfter(wx.MessageBox, + "Various plot types can be shown using the Plot menu. " + + "Check out the Options menu too.", + "wx.lib.plot Demo") self.app.MainLoop()