summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--virtManager/details.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/virtManager/details.py b/virtManager/details.py
index 8a9b9935..e0ad25ab 100644
--- a/virtManager/details.py
+++ b/virtManager/details.py
@@ -883,7 +883,8 @@ class vmmDetails(vmmGObjectUI):
uiutil.set_combo_text_column(machtype_combo, 0)
machtype_model.set_sort_column_id(0, Gtk.SortType.ASCENDING)
- show_machine = (arch not in ["i686", "x86_64"])
+ show_machine = (arch not in ["i686", "x86_64"] and
+ not self.vm.is_management_domain())
uiutil.set_grid_row_visible(self.widget("machine-type"),
show_machine)