diff --git a/lib/matplotlib/backends/backend_wx.py b/lib/matplotlib/backends/backend_wx.py index 3267d47173dc..2296f2877a7c 100644 --- a/lib/matplotlib/backends/backend_wx.py +++ b/lib/matplotlib/backends/backend_wx.py @@ -1063,6 +1063,10 @@ def destroy(self, *args): if wxapp: wxapp.Yield() + def full_screen_toggle(self): + # docstring inherited + self.frame.ShowFullScreen(not self.frame.IsFullScreen()) + def get_window_title(self): # docstring inherited return self.window.GetTitle()