Add Paradigm Title

This commit is contained in:
Igor Beloschapkin 2020-09-05 13:06:46 +02:00
parent a0169a664e
commit 20f099c5d8

5
app.py
View File

@ -52,6 +52,11 @@ class App:
frame = Frame(master)
frame.pack()
# label generation
self.Lparadigm = Label(frame, text = self.paradigmText + ' BCI', height = 4, width = 20)
self.Lparadigm['font'] = tkFont.Font(family='Helvetica', size=16, weight='bold')
self.Lparadigm.pack()
# button generation
if self.paradigmText == 'Tactile':
self.Bfilter = makeBtn(self, "1. Filter", "lightyellow", self.btn_filter, TOP)