MCPcopy Index your code
hub / github.com/RustPython/RustPython / wm_minsize

Method wm_minsize

Lib/tkinter/__init__.py:2352–2357  ·  view source on GitHub ↗

Set min WIDTH and HEIGHT for this widget. If the window is gridded the values are given in grid units. Return the current values if None is given.

(self, width=None, height=None)

Source from the content-addressed store, hash-verified

2350 maxsize = wm_maxsize
2351
2352 def wm_minsize(self, width=None, height=None):
2353 """Set min WIDTH and HEIGHT for this widget. If the window is gridded
2354 the values are given in grid units. Return the current values if None
2355 is given."""
2356 return self._getints(self.tk.call(
2357 'wm', 'minsize', self._w, width, height))
2358
2359 minsize = wm_minsize
2360

Callers

nothing calls this directly

Calls 2

_getintsMethod · 0.80
callMethod · 0.45

Tested by

no test coverage detected