From bfcfdbf78507ccc9ed56b775b840d1b868404f6d Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Sat, 18 Apr 2015 18:14:54 -0400 Subject: [PATCH] host: Remove some redundant connection fields --- ui/host.ui | 54 ++------------------------------------------- virtManager/host.py | 4 ---- 2 files changed, 2 insertions(+), 56 deletions(-) diff --git a/ui/host.ui b/ui/host.ui index f69c1d43a..43c95dd8e 100644 --- a/ui/host.ui +++ b/ui/host.ui @@ -136,56 +136,6 @@ 3 3 6 - - - True - False - Hostname: - 1 - - - 0 - 2 - - - - - True - False - Hypervisor: - 1 - - - 0 - 3 - - - - - True - False - example.com - True - end - 0 - - - 1 - 2 - - - - - True - False - Xen - 0 - - - 1 - 3 - - True @@ -225,7 +175,7 @@ 1 - 4 + 2 @@ -266,7 +216,7 @@ 0 - 4 + 2 diff --git a/virtManager/host.py b/virtManager/host.py index 6253fbcd9..ca165856f 100644 --- a/virtManager/host.py +++ b/virtManager/host.py @@ -220,13 +220,9 @@ class vmmHost(vmmGObjectUI): def init_conn_state(self): uri = self.conn.get_uri() - host = self.conn.get_hostname() - drv = self.conn.get_driver() auto = self.conn.get_autoconnect() self.widget("overview-uri").set_text(uri) - self.widget("overview-hostname").set_text(host) - self.widget("overview-hypervisor").set_text(drv) self.widget("config-autoconnect").set_active(auto) self.cpu_usage_graph = Sparkline()