From b9e25100f55e54e7448521080511598cb9714857 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Tue, 10 Sep 2013 14:40:06 +0200 Subject: [PATCH] virtManager: show the VM title in the manager window If a title is defined for a VM, append it to the name of the VM. Signed-off-by: Giuseppe Scrivano --- virtManager/manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/virtManager/manager.py b/virtManager/manager.py index ec86309f..0edf255c 100644 --- a/virtManager/manager.py +++ b/virtManager/manager.py @@ -646,7 +646,7 @@ class vmmManager(vmmGObjectUI): color = self._build_conn_color(conn) os_icon = None else: - name = vm.get_name() + name = vm.get_name_with_title() status = vm.run_status() markup = self._build_vm_markup(name, status) status_icon = vm.run_status_icon_name() @@ -761,7 +761,7 @@ class vmmManager(vmmGObjectUI): return try: - name = vm.get_name() + name = vm.get_name_with_title() status = vm.run_status() row[ROW_SORT_KEY] = name