mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-29 10:12:38 +02:00
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:
parent
41017745ec
commit
f791dc70ab
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||||
|
|
Loading…
Reference in a new issue