fix
This commit is contained in:
parent
47a0a52475
commit
98c1768d4f
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user