apol: reset busy dialog in setupUI()

For some reason, on Fedora the dialog will show before an explicit show()
is issued.
This commit is contained in:
Chris PeBenito 2016-02-26 08:58:09 -05:00
parent 16e03a3960
commit 5c39a1fd8c
6 changed files with 6 additions and 0 deletions

View File

@ -79,6 +79,7 @@ class DomainTransitionAnalysisTab(SEToolsWidget, QScrollArea):
self.busy.setRange(0, 0)
self.busy.setMinimumDuration(0)
self.busy.canceled.connect(self.thread.requestInterruption)
self.busy.reset()
# Ensure settings are consistent with the initial .ui state
self.max_path_length.setEnabled(self.all_paths.isChecked())

View File

@ -79,6 +79,7 @@ class InfoFlowAnalysisTab(SEToolsWidget, QScrollArea):
self.busy.setRange(0, 0)
self.busy.setMinimumDuration(0)
self.busy.canceled.connect(self.thread.requestInterruption)
self.busy.reset()
# Ensure settings are consistent with the initial .ui state
self.max_path_length.setEnabled(self.all_paths.isChecked())

View File

@ -91,6 +91,7 @@ class MLSRuleQueryTab(SEToolsWidget, QScrollArea):
self.busy.setRange(0, 0)
self.busy.setMinimumDuration(0)
self.busy.canceled.connect(self.thread.requestInterruption)
self.busy.reset()
# Ensure settings are consistent with the initial .ui state
self.set_source_regex(self.source_regex.isChecked())

View File

@ -101,6 +101,7 @@ class RBACRuleQueryTab(SEToolsWidget, QScrollArea):
self.busy.setRange(0, 0)
self.busy.setMinimumDuration(0)
self.busy.canceled.connect(self.thread.requestInterruption)
self.busy.reset()
# Ensure settings are consistent with the initial .ui state
self.set_source_regex(self.source_regex.isChecked())

View File

@ -108,6 +108,7 @@ class TERuleQueryTab(SEToolsWidget, QScrollArea):
self.busy.setRange(0, 0)
self.busy.setMinimumDuration(0)
self.busy.canceled.connect(self.thread.requestInterruption)
self.busy.reset()
# Ensure settings are consistent with the initial .ui state
self.set_source_regex(self.source_regex.isChecked())

View File

@ -90,6 +90,7 @@ class UserQueryTab(SEToolsWidget, QScrollArea):
self.busy.setRange(0, 0)
self.busy.setMinimumDuration(0)
self.busy.canceled.connect(self.thread.requestInterruption)
self.busy.reset()
# Ensure settings are consistent with the initial .ui state
self.notes.setHidden(not self.notes_expander.isChecked())