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.

classification
Title: Tkinter text horizontal scrollbar is not stationary
Type: behavior Stage: resolved
Components: Tkinter Versions: Python 3.8
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: epaine, logon_name, serhiy.storchaka
Priority: normal Keywords:

Created on 2021-07-26 11:16 by logon_name, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
editor.py logon_name, 2021-07-26 11:16 A simple tkinter editor
Messages (2)
msg398221 - (view) Author: (logon_name) Date: 2021-07-26 11:16
Hello!
When I was working on Tkinter GUI, I made a Text with two Scrollbars. But when I created many lines, filled the last line with letters, and then dragged the YScrollbar upwards, the XScrollbar could not be dragged. Moreover, when dragging down to the end, the Slider of the XScrollbar is not on the far right.
I hope this bug can be fixed as soon as possible.
msg398255 - (view) Author: E. Paine (epaine) * Date: 2021-07-26 20:31
Thank you for reporting this issue. I have personally found this problem to be annoying and it is also noted in msg377227. I did a brief bit of research but couldn't find an existing ticket on https://core.tcl-lang.org/tk/ticket so please feel free to report it there.

I believe it is a side-effect of optimisations the Tk team have made to allow the Text widget to have reasonable performance with a large number of lines (so I would be surprised if this limitation was not already known by them). Again, thank you for reporting this issue, but tkinter is just a thin wrapper around Tk so I think the issue here should be closed.
History
Date User Action Args
2022-04-11 14:59:47adminsetgithub: 88902
2021-07-27 07:10:27serhiy.storchakasetresolution: third party
2021-07-27 03:40:57logon_namesetstatus: open -> closed
stage: resolved
2021-07-26 20:31:25epainesetnosy: + serhiy.storchaka, epaine

messages: + msg398255
title: XScrollbar is not stationary -> Tkinter text horizontal scrollbar is not stationary
2021-07-26 11:16:21logon_namecreate