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