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 # Show raw uploaded files
def showInputLibrary(self): def showInputLibrary(self):
self.libTable = LibraryTable(LIB_RAW) libTable = LibraryTable(LIB_RAW)
self.setCentralWidget(self.libTable) self.setCentralWidget(libTable)
# Show visualisations # Show visualisations
def showVisualisationsLibrary(self): def showVisualisationsLibrary(self):
self.libTable = LibraryTable(LIB_VIS) libTable = LibraryTable(LIB_VIS)
self.setCentralWidget(self.libTable) self.setCentralWidget(libTable)
def showUploadFile(self): def showUploadFile(self):
dialog = QFileDialog(self) dialog = QFileDialog(self)