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: Tcl/Tk auto-expanding window
Type: Stage:
Components: Tkinter Versions: Python 2.4
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: Nosy List: fmareyen, gpolo
Priority: normal Keywords:

Created on 2006-12-25 15:10 by fmareyen, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg30865 - (view) Author: Fabian_M (fmareyen) Date: 2006-12-25 15:10
I've experienced an auto-expanding Tcl/Tk-window:
(Windows NT)

import Tkinter
tk = Tkinter.Tk()
tk.state("zoomed") #Windows only
tk.resizable(False, False)
tk.mainloop()

As you take the window by curser and move it slowly to the left, it expands automatically to the right. This effect doesn't exist vertically.

When you use tk.state("zoomed") you needn't to set tk.resizable, but this call remained in my programm and caused that problem.

Systeminformation:
------------------
Windows NT
sys.api_version = 1012 #0x3f4
sys.dllhandle = 503316480 #0x1e0000
sys.getwindowsversion() -> (4, 0, 1381, 2, "Service Pack 1")
sys.hexversion = 33817328 #0x20402f0
sys.platform = "win32"
sys.version = "2.4.2 (#67, Sep 28 2005, 12:41:11) [MSC v.1310 32 bit (I
sys.version_info = (2, 4, 2, 'final', 0)
sys.winver = "2.4"
_tkinter.TCL_VERSION = 8.4
_tkinter.TK_VERSION = 8.4

Thanks.

Fabian Mareyen

msg79337 - (view) Author: Guilherme Polo (gpolo) * (Python committer) Date: 2009-01-07 15:24
I can't reproduce this on python 2.4.4 (or any newer version) using 
windows vista, so this is either specific to the tk included in python 
2.4.2 or tk and your specific os version.

If you still have this problem, report it at http://sourceforge.net/projects/tktoolkit as it is not caused by Tkinter 
specifically.
History
Date User Action Args
2022-04-11 14:56:21adminsetgithub: 44378
2009-01-07 15:24:46gpolosetstatus: open -> closed
resolution: wont fix
messages: + msg79337
nosy: + gpolo
2006-12-25 15:10:25fmareyencreate