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 gpolo, kbk, ned.deily, python-dev, taleinat, terry.reedy, weeble
Date 2014-10-09.00:45:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412815504.18.0.0608720324382.issue3068@psf.upfronthosting.co.za>
In-reply-to
Content
Pushing a usable extension editor is my current Idle priority since the lack of one more or less blocks several other issues.  The two big problems with the Feb 2014 patch are the actions buttons at the bottom and the true/false options.

I moved the cureent, apparently working ConfigDialog action button code into a new method that I believe can be re-used in ConfigExtensionDialog with
    create_action_button = ConfigDialog.create_action_button
I nect incorporate this into the patch. (I pushed the change already because it makes the existing code clearer and easier to modify, by disentangling page code from button code.)

For binary options, I will use radiobutton pairs, as with ConfigDialog, if I cannot easily get a single button to look nice and work correctly.
History
Date User Action Args
2014-10-09 00:45:04terry.reedysetrecipients: + terry.reedy, kbk, taleinat, gpolo, ned.deily, weeble, python-dev
2014-10-09 00:45:04terry.reedysetmessageid: <1412815504.18.0.0608720324382.issue3068@psf.upfronthosting.co.za>
2014-10-09 00:45:04terry.reedylinkissue3068 messages
2014-10-09 00:45:03terry.reedycreate