()
| 14 | |
| 15 | |
| 16 | def second_window(): |
| 17 | |
| 18 | layout = [[sg.Text('The second form is small \nHere to show that opening a window using a window works')], |
| 19 | [sg.OK()]] |
| 20 | |
| 21 | window = sg.Window('Second Form', layout) |
| 22 | event, values = window.read() |
| 23 | window.close() |
| 24 | |
| 25 | |
| 26 | def test_menus(): |