VIS-37 #8

Merged
s416067 merged 2 commits from VIS-37 into master 2021-01-11 16:25:47 +01:00
Showing only changes of commit 98c1768d4f - Show all commits

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)