This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients Rich.Rauenzahn, Todd.Rovito, dzabel, loewis, markroseman, roger.serwy, terry.reedy
Date 2015-09-27.03:30:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1443324624.16.0.477606288546.issue24972@psf.upfronthosting.co.za>
In-reply-to
Content
I verified that inactiveselectbackground exists and starts as ''.  Since it should match the active selectbackground on all systems, as set by the current theme. I will try adding a line where selection colors are set: EditorWindow.ResetColorizer:
        self.text.config(
            ...
            selectforeground=select_colors['foreground'],
            selectbackground=select_colors['background'],
            inactiveselectbackground=select_colors['background']
            )
I believe this is the only place where this is needed.  The select colors are used for a different widget in TreeWidget. The use in ParenMatch for 'paren' tag should be temporary.

We will need to reconsider the 'found' highlight and the select versus found usage after this change.
History
Date User Action Args
2015-09-27 03:30:24terry.reedysetrecipients: + terry.reedy, loewis, roger.serwy, markroseman, Todd.Rovito, Rich.Rauenzahn, dzabel
2015-09-27 03:30:24terry.reedysetmessageid: <1443324624.16.0.477606288546.issue24972@psf.upfronthosting.co.za>
2015-09-27 03:30:24terry.reedylinkissue24972 messages
2015-09-27 03:30:23terry.reedycreate