in reply to Re: Re: Perl Tk::Wm
in thread Perl Tk::Wm

Instead of maxsize and minsize, try $win->resizable(0,0). That specifies whether the window can be resized in width or height (neither in this case). So your code becomes:
$win->geometry('575x375+225+150'); # geometry / offset $win->resizable(0,0); # non-resizable