diff --git a/docs/cookbook.md b/docs/cookbook.md index f10d448b..b56a1703 100644 --- a/docs/cookbook.md +++ b/docs/cookbook.md @@ -41,7 +41,7 @@ This will be the most common pattern you'll follow if you are not using an "even import PySimpleGUI as sg layout = [[sg.Text('My one-shot window.')], - [sg.InputText(), sg.FileBrowse()], + [sg.InputText()], [sg.Submit(), sg.Cancel()]] window = sg.Window('Window Title').Layout(layout) @@ -1524,4 +1524,7 @@ That's all... Run your `my_program.exe` file on the Windows machine of your choo > (famous last words that screw up just about anything being referenced) -Your EXE file should run without creating a "shell window". Only the GUI window should show up on your taskbar. \ No newline at end of file +Your EXE file should run without creating a "shell window". Only the GUI window should show up on your taskbar. + \ No newline at end of file