commit
faafdb914b
|
@ -5464,6 +5464,7 @@ def PackFormIntoFrame(form, containing_frame, toplevel_form):
|
||||||
element._TKOut = TKOutput(tk_row_frame, width=width, height=height, bd=border_depth,
|
element._TKOut = TKOutput(tk_row_frame, width=width, height=height, bd=border_depth,
|
||||||
background_color=element.BackgroundColor, text_color=text_color, font=font,
|
background_color=element.BackgroundColor, text_color=text_color, font=font,
|
||||||
pad=elementpad)
|
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')
|
element._TKOut.pack(side=tk.LEFT, expand=True, fill='both')
|
||||||
if element.Visible is False:
|
if element.Visible is False:
|
||||||
element._TKOut.frame.pack_forget()
|
element._TKOut.frame.pack_forget()
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
![Python Version](https://img.shields.io/badge/Python-3.x-yellow.svg)
|
![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"
|
"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)
|
[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
|
* 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
|
* 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
|
# Design
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
![Python Version](https://img.shields.io/badge/Python-3.x-yellow.svg)
|
![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.
|
* 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
|
# Design
|
||||||
# Author
|
# Author
|
||||||
Mike B.
|
Mike B.
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
![Python Version](https://img.shields.io/badge/Python-3.x-yellow.svg)
|
![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!!
|
* `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
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue