New shortcut functions Button - B, Btn, Butt. InputText - I. Button Text converted to string when initialized

This commit is contained in:
MikeTheWatchGuy 2019-04-02 11:37:16 -04:00
parent 644b597263
commit 816a7341c5
4 changed files with 37 additions and 8 deletions

View file

@ -612,7 +612,7 @@ class InputText(Element):
# ------------------------- INPUT TEXT Element lazy functions ------------------------- #
In = InputText
Input = InputText
I = InputText
# ---------------------------------------------------------------------- #
# Combo #
@ -1396,7 +1396,7 @@ class Button(Element):
self.FileTypes = file_types
self.TKButton = None
self.Target = target
self.ButtonText = button_text
self.ButtonText = str(button_text)
self.ButtonColor = button_color if button_color else DEFAULT_BUTTON_COLOR
self.TextColor = self.ButtonColor[0]
self.BackgroundColor = self.ButtonColor[1]
@ -1620,6 +1620,12 @@ def convert_tkinter_filetypes_to_wx(filetypes):
return wx_filetypes
# ------------------------- Button lazy functions ------------------------- #
B = Button
Btn = Button
Butt = Button
# ---------------------------------------------------------------------- #
# ProgreessBar #
# ---------------------------------------------------------------------- #