Skip to content

Commit c34d28b

Browse files
authored
Merge pull request PySimpleGUI#6480 from PySimpleGUI/Dev-latest
Fixed spelling errors... resuse should have been reuse
2 parents 8163880 + 1d3126f commit c34d28b

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

PySimpleGUI.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python3
22

3-
version = __version__ = "4.61.0.192 Unreleased"
3+
version = __version__ = "4.61.0.193 Unreleased"
44

55
_change_log = """
66
Changelog since 4.60.0 released to PyPI on 8-May-2022
@@ -456,6 +456,8 @@
456456
Fixed bug in Button.update. Was setting the activeforeground and activebackground which broke the mouseover or mouse press colors
457457
4.61.0.192
458458
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
459461

460462
"""
461463

@@ -7358,7 +7360,7 @@ def add_row(self, *args):
73587360
continue
73597361
if element.ParentContainer is not None:
73607362
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. ***',
73627364
UserWarning)
73637365
_error_popup_with_traceback('Error creating Frame layout',
73647366
'The layout specified has already been used',
@@ -7694,7 +7696,7 @@ def add_row(self, *args):
76947696
continue
76957697
if element.ParentContainer is not None:
76967698
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. ***',
76987700
UserWarning)
76997701
popup_error_with_traceback('Error creating Tab layout',
77007702
'The layout specified has already been used',
@@ -7953,7 +7955,7 @@ def add_row(self, *args):
79537955
continue
79547956
if element.ParentContainer is not None:
79557957
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. ***',
79577959
UserWarning)
79587960
PopupError('Error creating Tab layout',
79597961
'The layout specified has already been used',
@@ -8614,7 +8616,7 @@ def add_row(self, *args):
86148616
continue
86158617
if element.ParentContainer is not None:
86168618
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. ***',
86188620
UserWarning)
86198621
PopupError('Error creating Column layout',
86208622
'The layout specified has already been used',
@@ -10655,10 +10657,10 @@ def add_row(self, *args):
1065510657
continue
1065610658
if element.ParentContainer is not None:
1065710659
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. ***',
1065910661
UserWarning)
1066010662
_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.',
1066210664
"The layout specified has an element that's already been used.",
1066310665
'You MUST start with a "clean", unused layout every time you create a window',
1066410666
'The offensive Element = ',

0 commit comments

Comments
 (0)