[issue40219] ttk LabeledScale: label covered by hidden element

2020-12-19 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue40219] ttk LabeledScale: label covered by hidden element

2020-12-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 6ad5fd14825fc6039a9684dfdc14f5d12b86e25f by Miss Islington (bot) in branch '3.9': bpo-40219: Lowered ttk LabeledScale dummy (GH-21467) (GH-23788) https://github.com/python/cpython/commit/6ad5fd14825fc6039a9684dfdc14f5d12b86e25f -- _

[issue40219] ttk LabeledScale: label covered by hidden element

2020-12-15 Thread miss-islington
miss-islington added the comment: New changeset 13d40c2a418116797eccd77bd65e4dbd689008db by Miss Islington (bot) in branch '3.8': bpo-40219: Lowered ttk LabeledScale dummy (GH-21467) https://github.com/python/cpython/commit/13d40c2a418116797eccd77bd65e4dbd689008db -- __

[issue40219] ttk LabeledScale: label covered by hidden element

2020-12-15 Thread miss-islington
Change by miss-islington : -- pull_requests: +22646 pull_request: https://github.com/python/cpython/pull/23789 ___ Python tracker ___ __

[issue40219] ttk LabeledScale: label covered by hidden element

2020-12-15 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +22645 pull_request: https://github.com/python/cpython/pull/23788 ___ Python tracker _

[issue40219] ttk LabeledScale: label covered by hidden element

2020-12-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset b9ced83cf427ec86802ba4c9a562c6d9cafc72f5 by E-Paine in branch 'master': bpo-40219: Lowered ttk LabeledScale dummy (GH-21467) https://github.com/python/cpython/commit/b9ced83cf427ec86802ba4c9a562c6d9cafc72f5 -- __

[issue40219] ttk LabeledScale: label covered by hidden element

2020-07-13 Thread E. Paine
Change by E. Paine : -- versions: +Python 3.10 -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue40219] ttk LabeledScale: label covered by hidden element

2020-07-13 Thread E. Paine
Change by E. Paine : -- pull_requests: +20613 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21467 ___ Python tracker ___

[issue40219] ttk LabeledScale: label covered by hidden element

2020-06-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: Right. LabelScale is a tkinter.ttk extension, like OptionMenu. If I do the PR, I would call the placeholder 'dummy' since it is permanent (not removed after initialization). I'd like to see what happens without it and expand the comment to a line like

[issue40219] ttk LabeledScale: label covered by hidden element

2020-06-12 Thread E. Paine
E. Paine added the comment: This is indeed a tkinter issue and is caused by the placeholder label. As the main label is added to the frame using the place manager, this placeholder is required to make the frame the correct height. I have attached a small diff which lowers this placeholder, f

[issue40219] ttk LabeledScale: label covered by hidden element

2020-04-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: 3.6 only get security fixes, but your nice minimal, complete verifiable example let me verify easily on 3.9a5 with tk 8.6.9 and 3.6 with 8.6.6 and 2.7.17 with 8.5.19. The hidden element appears to be something like'||' with only part visible, depending on th

[issue40219] ttk LabeledScale: label covered by hidden element

2020-04-07 Thread Stephen Bell
Change by Stephen Bell : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue40219] ttk LabeledScale: label covered by hidden element

2020-04-07 Thread Stephen Bell
New submission from Stephen Bell : The LabeledScale in tkinter.ttk seems to have some kind of hidden element that covers the LabeledScale's label when the value is set to mid-scale. Tested on Windows 10, Python 3.6 See below code to reproduce: import tkinter from tkinter import ttk master =