This commit is contained in:
VanillaHellen 2021-01-11 16:24:30 +01:00
parent 47a0a52475
commit 98c1768d4f

View File

@ -156,13 +156,13 @@ class MainWindow(QMainWindow):
# Show raw uploaded files
def showInputLibrary(self):
self.libTable = LibraryTable(LIB_RAW)
self.setCentralWidget(self.libTable)
libTable = LibraryTable(LIB_RAW)
self.setCentralWidget(libTable)
# Show visualisations
def showVisualisationsLibrary(self):
self.libTable = LibraryTable(LIB_VIS)
self.setCentralWidget(self.libTable)
libTable = LibraryTable(LIB_VIS)
self.setCentralWidget(libTable)
def showUploadFile(self):
dialog = QFileDialog(self)