matplotlib弹出窗口删除

时间:2018-07-24 03:41:05

标签: matplotlib

enter image description here在创建图形时,我会看到一个弹出窗口“'figure 1'ready”等。在以前的matplotlib版本中不存在(我正在使用spyder)。这些临时性地阻塞了屏幕,直到几秒钟后消失。如何停止这些弹出窗口(附加示例图像)?

1 个答案:

答案 0 :(得分:0)

这是由 Gnome 功能引起的,该功能会导致出现此弹出窗口,而不是在后台弹出一个窗口并窃取焦点。

根本原因是每次绘制图形时,它都会偷走焦点并来到最前面。 Gnome 扩展覆盖了这种焦点窃取,但会显示弹出窗口。

有关这方面的更多信息,请参阅 https://superuser.com/questions/644850/disable-window-is-ready-notification-in-gnome-shell

我使用的修复方法是防止 matplotlib 窃取窗口焦点,这个问题涵盖了这个问题:Make interactive matplotlib window not pop to front on each update (Windows 7)