File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11#!/usr/bin/python3
22
3- version = __version__ = "4.47.0.6 Unreleased"
3+ version = __version__ = "4.47.0.7 Unreleased"
44
55"""
66 Changelog since 4.47.0 release to PyPI on 30 Aug 2021
1919 New parameter alias for elements.... p == pad. It is like the other 2 parameter aliases s == size and k == key
2020 4,47.0.6
2121 New parameter size_px for ProgressBar - yes, finally a sensible measurement for this element using pixels rather than chars and pixels
22+ 4,47.0.7
23+ New alias for Stretch - Push - P. Stretch is a Widget name from Qt. I gave it some thought and realized what it DOES is Pushes elements
24+ around. So, Push seemed like a good name, and it's shorter. I then also make the 1-letter version P.
2225"""
2326
2427__version__ = version.split()[0] # For PEP 396 and PEP 345
@@ -8126,6 +8129,8 @@ def Stretch():
81268129 """
81278130 return Text(font='_ 1', pad=(0,0), expand_x=True)
81288131
8132+ Push = Stretch
8133+ P = Push
81298134
81308135def VStretch():
81318136 """
You can’t perform that action at this time.
0 commit comments