Hide widgets: select docs -> settings -> conversion

To help debugging and visualizing what was happening, we set all
widgets to be visible at the same time. Now that is no longer needed,
we can hide them.

This keeps the original program flow:
  1. select the documents
  2. set the settings
  3. see the conversion progress

This diverges from the proposed design in issue #117 for simplification
and consistency (with past program flow) purposes.
This commit is contained in:
deeplow 2022-10-18 11:33:56 +01:00
parent 41017745ec
commit f791dc70ab
No known key found for this signature in database
GPG key ID: 577982871529A52A

View file

@ -230,8 +230,8 @@ class ContentWidget(QtWidgets.QWidget):
self.setLayout(layout) self.setLayout(layout)
def document_selected(self) -> None: def document_selected(self) -> None:
self.doc_selection_widget.hide()
self.settings_widget.show() self.settings_widget.show()
self.documents_list.show()
def start_clicked(self) -> None: def start_clicked(self) -> None:
self.settings_widget.hide() self.settings_widget.hide()