diff --git a/Masterarbeit/UIController.pyc b/Masterarbeit/UIController.pyc index d791ef2..64aca64 100644 Binary files a/Masterarbeit/UIController.pyc and b/Masterarbeit/UIController.pyc differ diff --git a/Masterarbeit/UIModellTaktil.pyc b/Masterarbeit/UIModellTaktil.pyc new file mode 100644 index 0000000..da84caf Binary files /dev/null and b/Masterarbeit/UIModellTaktil.pyc differ diff --git a/Masterarbeit/UIModellVisuell.pyc b/Masterarbeit/UIModellVisuell.pyc new file mode 100644 index 0000000..ac11ff2 Binary files /dev/null and b/Masterarbeit/UIModellVisuell.pyc differ diff --git a/Masterarbeit/UIViewTKinter.py b/Masterarbeit/UIViewTKinter.py index 893f8b5..30dc9fd 100644 --- a/Masterarbeit/UIViewTKinter.py +++ b/Masterarbeit/UIViewTKinter.py @@ -3,7 +3,7 @@ try: except ImportError: from tkinter import * -from tkinter import font +#from tkinter import font from UIController import * @@ -63,7 +63,7 @@ class View(Tk): def createTopFrame(self): self.topFrame = Frame(self, bg=self.layout["backgroundBar"], height=50, width=500) self.changeBtn = Button(self.topFrame, text="Wechsel zu taktilen BCI", command=lambda: self.controller.actionPerformed("wechsel"), height=2, width = 25, font=self.layout["fontSmall"], bg=self.layout["backgroundBtn"], fg=self.layout["fontColor"]) - self.saveBtn = Button(self.topFrame, text="Ă„nderung des Speicherorts", command=lambda: self.controller.actionPerformed("speicherort"), height=2, width = 25, font=self.layout["fontSmall"], bg=self.layout["backgroundBtn"], fg=self.layout["fontColor"]) + self.saveBtn = Button(self.topFrame, text="Aenderung des Speicherorts", command=lambda: self.controller.actionPerformed("speicherort"), height=2, width = 25, font=self.layout["fontSmall"], bg=self.layout["backgroundBtn"], fg=self.layout["fontColor"]) self.toplabel = Label(self.topFrame, text="visuelles Buchstabieren", font=self.layout["font"], bg=self.layout["backgroundBar"], fg=self.layout["fontColor"], ) self.topFrame.grid(column=0, row=0) diff --git a/Masterarbeit/UIViewTKinter.pyc b/Masterarbeit/UIViewTKinter.pyc index 0f762ad..15519a2 100644 Binary files a/Masterarbeit/UIViewTKinter.pyc and b/Masterarbeit/UIViewTKinter.pyc differ