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 klappnase
Recipients
Date 2006-07-20.10:43:13
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=797929

I do not have winXP or OSX available to actually test it,
but I doubt that
    top.wm_attributes('alpha',.8)
will work; from Tk documentation it looks like you will have
to write
    top.wm_attributes('-alpha',.8)
which is in fact not what one would expect.
Maybe a better solution than Greg's patch was to change
wm_attributes() to accept both ways, like:

def wm_attributes(self, *args, **kw):
    args = ('wm', 'attributes', self._w) + args +
self._options({}, kw)
    return self.tk.call(args)

so that old code will not break and the more intuitive
version that Greg suggested is also legal.
History
Date User Action Args
2007-08-23 15:52:38adminlinkissue1500773 messages
2007-08-23 15:52:38admincreate