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 mboldisc
Recipients mboldisc
Date 2014-04-18.20:31:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397853102.02.0.000549588678959.issue21303@psf.upfronthosting.co.za>
In-reply-to
Content
Here is my code:

   self._image_set_number = Spinbox(self._ramp_group, from_=0, to=999, command=self.reset_rep, format="%03.0f")
   self._repetition_change = Spinbox(self._ramp_group, from_=00, to=99, format="%02.0f")

On Linux, the spinners behave as expected. There are always three digits in "_image_set_number" and two digits in "_repetition_change". The values are padded on the left by zeros. When I use the small arrows to increase the value, it works as expected.

But, on Windows 7 64-bit, the small arrows do not behave as expected. They go up to "008" and then go back to "000" on the next click. Am I missing something or is this a bug in the the Windows version of Tkinter?
History
Date User Action Args
2014-04-18 20:31:42mboldiscsetrecipients: + mboldisc
2014-04-18 20:31:42mboldiscsetmessageid: <1397853102.02.0.000549588678959.issue21303@psf.upfronthosting.co.za>
2014-04-18 20:31:42mboldisclinkissue21303 messages
2014-04-18 20:31:41mboldisccreate