diff --git a/PySimpleGUI.py b/PySimpleGUI.py index 23962677..b2f1d758 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -5464,6 +5464,7 @@ def PackFormIntoFrame(form, containing_frame, toplevel_form): element._TKOut = TKOutput(tk_row_frame, width=width, height=height, bd=border_depth, background_color=element.BackgroundColor, text_color=text_color, font=font, pad=elementpad) + element._TKOut.output.configure(takefocus=0) # make it so that Output does not get focus element._TKOut.pack(side=tk.LEFT, expand=True, fill='both') if element.Visible is False: element._TKOut.frame.pack_forget() diff --git a/PySimpleGUIQt/readme.md b/PySimpleGUIQt/readme.md index 9fdbcbd8..1537cc64 100644 --- a/PySimpleGUIQt/readme.md +++ b/PySimpleGUIQt/readme.md @@ -16,7 +16,7 @@ ![Python Version](https://img.shields.io/badge/Python-3.x-yellow.svg) -![Python Version](https://img.shields.io/badge/PySimpleGUIQt_For_Python_3.x_Version-00.25.0-orange.svg?longCache=true&style=for-the-badge) +![Python Version](https://img.shields.io/badge/PySimpleGUIQt_For_Python_3.x_Version-00.26.0-orange.svg?longCache=true&style=for-the-badge) @@ -26,7 +26,7 @@ "Qt without the ugly" - ## The Alpha Release Version 0.25.0 + ## The Alpha Release [Announcements of Latest Developments](https://github.com/MikeTheWatchGuy/PySimpleGUI/issues/142) @@ -666,6 +666,11 @@ Dial - disable * Convert user supplied button text to string just in case not a string * Parameter `icon` in `Window` call can be Base64 byte string in addition to filename + +## 0.26.0 11-Apr-2019 PySimpleGUIQt + +* NEW Window parameter layout so can skip calling Layout + # Design diff --git a/PySimpleGUIWeb/readme.md b/PySimpleGUIWeb/readme.md index b87fbb19..6df9a90b 100644 --- a/PySimpleGUIWeb/readme.md +++ b/PySimpleGUIWeb/readme.md @@ -8,7 +8,7 @@ ![Python Version](https://img.shields.io/badge/Python-3.x-yellow.svg) -![Python Version](https://img.shields.io/badge/PySimpleGUIWeb_-0.21.0-orange.svg?longCache=true&style=for-the-badge) +![Python Version](https://img.shields.io/badge/PySimpleGUIWeb_-0.22.0-orange.svg?longCache=true&style=for-the-badge) @@ -292,6 +292,11 @@ New features * If `disable_close` parameter set in Window call, then Remi will not disconnect when browser closed. Great for reconnecting. + +## 0.22.0 11-Apr-2019 PySimpleGUIWeb + +* NEW Window parameter layout so can skip calling Layout + # Design # Author Mike B. diff --git a/PySimpleGUIWx/readme.md b/PySimpleGUIWx/readme.md index 28de0fe3..d45963ee 100644 --- a/PySimpleGUIWx/readme.md +++ b/PySimpleGUIWx/readme.md @@ -7,7 +7,7 @@ ![Python Version](https://img.shields.io/badge/Python-3.x-yellow.svg) -![Python Version](https://img.shields.io/badge/PySimpleGUIWx_For_Python_3.x_Version-0.10.0-orange.svg?longCache=true&style=for-the-badge) +![Python Version](https://img.shields.io/badge/PySimpleGUIWx_For_Python_3.x_Version-0.11.0-orange.svg?longCache=true&style=for-the-badge) @@ -359,6 +359,10 @@ Starting with release 0.4.0, most of the Popup functions work. This means you c * `do_not_clear` is now TRUE by default on Input and Multiline elements!! + +## 0.11.0 11-Apr-2019 PySimpleGUIWx + +* NEW Window parameter layout so can skip calling Layout