mirror of
https://github.com/SELinuxProject/setools
synced 2025-04-01 22:58:12 +00:00
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:
parent
16e03a3960
commit
5c39a1fd8c
@ -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())
|
||||
|
@ -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())
|
||||
|
@ -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())
|
||||
|
@ -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())
|
||||
|
@ -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())
|
||||
|
@ -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())
|
||||
|
Loading…
Reference in New Issue
Block a user