We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c090a9c commit 3b19a15Copy full SHA for 3b19a15
lib/matplotlib/backend_bases.py
@@ -2433,16 +2433,16 @@ def show_popup(self, msg):
2433
def get_window_title(self):
2434
"""
2435
Get the title text of the window containing the figure.
2436
- Return None if there is no window (eg, a PS backend).
+ Return None for non-GUI backends (eg, a PS backend).
2437
2438
- raise NotImplementedError
+ return 'image'
2439
2440
def set_window_title(self, title):
2441
2442
Set the title text of the window containing the figure. Note that
2443
- this has no effect if there is no window (eg, a PS backend).
+ this has no effect for non-GUI backends (eg, a PS backend).
2444
2445
+ pass
2446
2447
2448
class Cursors:
0 commit comments