Merge remote-tracking branch 'origin/bugfix/application_without_executables' into bugfix/unreal-on-linux

This commit is contained in:
Ondřej Samohel 2021-06-21 18:41:44 +02:00
commit 8ff48cebb5
No known key found for this signature in database
GPG key ID: 02376E18990A97C6

View file

@ -196,8 +196,12 @@ class LocalApplicationsWidgets(QtWidgets.QWidget):
# Create App group specific widget and store it by the key
group_widget = AppGroupWidget(entity, self)
self.widgets_by_group_name[key] = group_widget
self.content_layout.addWidget(group_widget)
if group_widget.widgets_by_variant_name:
self.widgets_by_group_name[key] = group_widget
self.content_layout.addWidget(group_widget)
else:
group_widget.setVisible(False)
group_widget.deleteLater()
def update_local_settings(self, value):
if not value: