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 serhiy.storchaka
Recipients kbk, markroseman, ncoghlan, ned.deily, rhettinger, roger.serwy, serhiy.storchaka, terry.reedy
Date 2015-08-01.21:04:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1438463084.04.0.702169826283.issue24750@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, but setting the highlightthickness option can be optional too.

    self.scrollbarView = Scrollbar(frameText, orient=VERTICAL,
                                   takefocus=FALSE)
    try:
        self.scrollbarView['highlightthickness'] = 0
    except TclError:
        pass

or

    self.scrollbarView = Scrollbar(frameText, orient=VERTICAL,
                                   takefocus=FALSE)
    if not ttk:
        self.scrollbarView['highlightthickness'] = 0

Otherwise I think it is not worth to apply these changes to maintained releases. 3.4 will switched to security fixes only mode soon, but 2.7 has long support term. Bugfix release should continue to work on platforms that are shipped with Tcl/Tk 8.4.
History
Date User Action Args
2015-08-01 21:04:44serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, terry.reedy, kbk, ncoghlan, ned.deily, roger.serwy, markroseman
2015-08-01 21:04:44serhiy.storchakasetmessageid: <1438463084.04.0.702169826283.issue24750@psf.upfronthosting.co.za>
2015-08-01 21:04:44serhiy.storchakalinkissue24750 messages
2015-08-01 21:04:43serhiy.storchakacreate