After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 646123 - pythonoutline unnecesarily recomputes outline of unmodified documents
pythonoutline unnecesarily recomputes outline of unmodified documents
Status: RESOLVED NOTGNOME
Product: gedit-plugins
Classification: Other
Component: General
unspecified
Other All
: Normal normal
: ---
Assigned To: Gedit maintainers
Gedit maintainers
Depends on:
Blocks:
 
 
Reported: 2011-03-29 15:31 UTC by pang
Modified: 2019-03-23 20:34 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description pang 2011-03-29 15:31:27 UTC
pythonoutline unnecesarily recomputes outline of unmodified documents, which is a waste of time. In big documents, this may cause a lag of a few seconds upon switching tabs. I propose to replace line 228 of pythonoutline.py:

    if document:

by 

    if document and document.get_modified():
Comment 1 Ignacio Casal Quinteiro (nacho) 2011-03-29 17:35:03 UTC
That looks like a third party plugin. We don't support it, if you want it fixed
you would have to contact the author or modify it yourself.
Thanks for reporting it anyway.