Re: Dpi and Resolution issues



On 31 Jan., 13:36, Plebeian <casey.ack...@xxxxxxxxx> wrote:
Hi, i've recently ran into the problem of my toplevel window being too
small of a container for people who use a higher DPI and resolution
setting than I use.

How would I go about fixing this?

You can for instance resize the toplevel to be half as high and half
as wide as the screen:

wm resize . [expr [winfo screenwidth .]/2]x[expr [winfo
screenheight .]/2]
.