Skip to content

Commit

Permalink
Update Startfenster.py
Browse files Browse the repository at this point in the history
  • Loading branch information
NADOOITChristophBa committed Apr 13, 2024
1 parent d575a76 commit bacb2b4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ def __init__(

self.console_output = MultilineTextInput(id=id, style=Pack(flex=1), readonly=True)

self.standardeingabe_box.excelDatei = toga.MultilineTextInput(
self.excelDatei = toga.MultilineTextInput(
placeholder="Excel Datei hier ablegen",
style=StandardStyling.standard_input_style(),
)
self.standardeingabe_box.add(self.standardeingabe_box.excelDatei)
self.standardeingabe_box.add(self.excelDatei)

#self.standardeingabe_box.dateiname = toga.TextInput(style=StandardStyling.standard_input_style())
#self.standardeingabe_box.add(self.standardeingabe_box.dateiname)
Expand Down Expand Up @@ -90,7 +90,7 @@ def __init__(


def setup_input_fields(self, start_values):
self.standardeingabe_box.excelDatei.value = start_values["excelDatei"]
self.excelDatei.value = start_values["excelDatei"]

def next_step(self, widget=None):

Expand Down

0 comments on commit bacb2b4

Please sign in to comment.