Fix welcome app crash: remove calamares button remnants

- Removed empty <child> tags left after calamares button deletion
- Removed set_visible(True) call for nonexistent calamares widget
  (was causing AttributeError crash on live ISO)
- Install button now shows properly as 'Install Antergos NeXT'
This commit is contained in:
2026-06-23 15:08:21 +02:00
parent 203afe4d35
commit 45cc57f4a5
2 changed files with 1 additions and 5 deletions
+1 -2
View File
@@ -227,8 +227,7 @@ class Hello(Gtk.Window):
self.builder.get_object("installlabel").set_visible(True)
# show install button
self.builder.get_object("install").set_visible(True)
# show calamares alternative installer
self.builder.get_object("calamares").set_visible(True)
# Installed systems
else:
manager = EmbedManager(EmbedBrowser(), EmbedLayouts())