|
1 | 1 | #!/usr/bin/python3 |
2 | 2 |
|
3 | | -version = __version__ = "4.61.0.192 Unreleased" |
| 3 | +version = __version__ = "4.61.0.193 Unreleased" |
4 | 4 |
|
5 | 5 | _change_log = """ |
6 | 6 | Changelog since 4.60.0 released to PyPI on 8-May-2022 |
|
456 | 456 | Fixed bug in Button.update. Was setting the activeforeground and activebackground which broke the mouseover or mouse press colors |
457 | 457 | 4.61.0.192 |
458 | 458 | Fixed bug in Button.update. Corrected when activeforeground and activebackground are set. Removing them in version above was a mistake |
| 459 | + 4.61.0.193 |
| 460 | + Fixed spelling errors... resuse should have been reuse |
459 | 461 |
|
460 | 462 | """ |
461 | 463 |
|
@@ -7358,7 +7360,7 @@ def add_row(self, *args): |
7358 | 7360 | continue |
7359 | 7361 | if element.ParentContainer is not None: |
7360 | 7362 | warnings.warn( |
7361 | | - '*** YOU ARE ATTEMPTING TO RESUSE AN ELEMENT IN YOUR LAYOUT! Once placed in a layout, an element cannot be used in another layout. ***', |
| 7363 | + '*** YOU ARE ATTEMPTING TO REUSE AN ELEMENT IN YOUR LAYOUT! Once placed in a layout, an element cannot be used in another layout. ***', |
7362 | 7364 | UserWarning) |
7363 | 7365 | _error_popup_with_traceback('Error creating Frame layout', |
7364 | 7366 | 'The layout specified has already been used', |
@@ -7694,7 +7696,7 @@ def add_row(self, *args): |
7694 | 7696 | continue |
7695 | 7697 | if element.ParentContainer is not None: |
7696 | 7698 | warnings.warn( |
7697 | | - '*** YOU ARE ATTEMPTING TO RESUSE AN ELEMENT IN YOUR LAYOUT! Once placed in a layout, an element cannot be used in another layout. ***', |
| 7699 | + '*** YOU ARE ATTEMPTING TO REUSE AN ELEMENT IN YOUR LAYOUT! Once placed in a layout, an element cannot be used in another layout. ***', |
7698 | 7700 | UserWarning) |
7699 | 7701 | popup_error_with_traceback('Error creating Tab layout', |
7700 | 7702 | 'The layout specified has already been used', |
@@ -7953,7 +7955,7 @@ def add_row(self, *args): |
7953 | 7955 | continue |
7954 | 7956 | if element.ParentContainer is not None: |
7955 | 7957 | warnings.warn( |
7956 | | - '*** YOU ARE ATTEMPTING TO RESUSE AN ELEMENT IN YOUR LAYOUT! Once placed in a layout, an element cannot be used in another layout. ***', |
| 7958 | + '*** YOU ARE ATTEMPTING TO REUSE AN ELEMENT IN YOUR LAYOUT! Once placed in a layout, an element cannot be used in another layout. ***', |
7957 | 7959 | UserWarning) |
7958 | 7960 | PopupError('Error creating Tab layout', |
7959 | 7961 | 'The layout specified has already been used', |
@@ -8614,7 +8616,7 @@ def add_row(self, *args): |
8614 | 8616 | continue |
8615 | 8617 | if element.ParentContainer is not None: |
8616 | 8618 | warnings.warn( |
8617 | | - '*** YOU ARE ATTEMPTING TO RESUSE AN ELEMENT IN YOUR LAYOUT! Once placed in a layout, an element cannot be used in another layout. ***', |
| 8619 | + '*** YOU ARE ATTEMPTING TO REUSE AN ELEMENT IN YOUR LAYOUT! Once placed in a layout, an element cannot be used in another layout. ***', |
8618 | 8620 | UserWarning) |
8619 | 8621 | PopupError('Error creating Column layout', |
8620 | 8622 | 'The layout specified has already been used', |
@@ -10655,10 +10657,10 @@ def add_row(self, *args): |
10655 | 10657 | continue |
10656 | 10658 | if element.ParentContainer is not None: |
10657 | 10659 | warnings.warn( |
10658 | | - '*** YOU ARE ATTEMPTING TO RESUSE AN ELEMENT IN YOUR LAYOUT! Once placed in a layout, an element cannot be used in another layout. ***', |
| 10660 | + '*** YOU ARE ATTEMPTING TO REUSE AN ELEMENT IN YOUR LAYOUT! Once placed in a layout, an element cannot be used in another layout. ***', |
10659 | 10661 | UserWarning) |
10660 | 10662 | _error_popup_with_traceback('Error detected in layout - Contains an element that has already been used.', |
10661 | | - 'You have attempted to resuse an element in your layout.', |
| 10663 | + 'You have attempted to reuse an element in your layout.', |
10662 | 10664 | "The layout specified has an element that's already been used.", |
10663 | 10665 | 'You MUST start with a "clean", unused layout every time you create a window', |
10664 | 10666 | 'The offensive Element = ', |
|
0 commit comments