From 76f1aad555750eb5601bc2c95501730247ed1de1 Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Wed, 24 Oct 2018 16:57:48 -0400 Subject: [PATCH] Wider input field --- Demo_Google_TTS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Demo_Google_TTS.py b/Demo_Google_TTS.py index d39ec135..b49b644e 100644 --- a/Demo_Google_TTS.py +++ b/Demo_Google_TTS.py @@ -14,7 +14,7 @@ import os ''' layout = [[sg.Text('What would you like me to say?')], - [sg.Multiline(size=(40,10), enter_submits=True)], + [sg.Multiline(size=(60,10), enter_submits=True)], [sg.RButton('Speak', bind_return_key=True), sg.Exit()]] window = sg.Window('Google Text to Speech').Layout(layout)