[New-bugs-announce] [issue38783] the window size is bigger than the specific size when create a window with a fix size in Windows platform

John Liao report at bugs.python.org
Wed Nov 13 02:34:01 EST 2019


New submission from John Liao <johnliao52 at gmail.com>:

from tkinter import *

master = Tk()
master.resizable(False, False)
master.geometry("100x100")

master.mainloop()

When using the simple code above to create a fix size window, the actual window client area's size is about 126x126 pixels.

Environment:
Windows 10 Home 64 bit edition, python 3.7.4, tkinter verion 8.4

----------
components: Tkinter
messages: 356519
nosy: johnliao
priority: normal
severity: normal
status: open
title: the window size is bigger than the specific size when create a window with a fix size in Windows platform
type: behavior
versions: Python 3.7

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue38783>
_______________________________________


More information about the New-bugs-announce mailing list