+ settings work for now

This commit is contained in:
oleting
2021-01-04 20:00:14 +01:00
parent 02b25355db
commit fbec8d2f18
2 changed files with 16 additions and 42 deletions

View File

@@ -123,28 +123,8 @@ class Layout_settings():
]
choices = [
[
sg.Button(button_text='conflict_behaviour', key='-CONFLICT_BEHAVIOUR-'),
]
]
self.layout = [
[
sg.Column(text_column),
sg.Column(choices),
]
]
class Layout_popup:
def __init__(self):
text_column = [
[
sg.Text('What should the program do if a file already exist?')
]
]
choices = [
[
[
sg.Text('What should the program do if a file already exist?'),
sg.Button(button_text='skip', key='-SKIP-'),
sg.Button(button_text='overwrite', key='-OVERWRITE-'),
sg.Button(button_text='create expicit name', key='-EXPICIT-'),
@@ -157,3 +137,6 @@ class Layout_popup:
]
]