ae026a575b
* Merged code with python-virtinst. virtinst is no longer public * Port from GTK2 to GTK3 (Daniel Berrange, Cole Robinson) * Port from gconf to gsettings * Port from autotools to python distutils * Remove virt-manager-tui * Remove HAL support * IPv6 and static route virtual network support (Gene Czarcinski) * virt-install: Add –cpu host-passthrough (Ken ICHIKAWA, Hu Tao) OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=129
31 lines
1.3 KiB
Diff
31 lines
1.3 KiB
Diff
This patch reverses the commit described below. The commit causes a serious
|
|
mouse tracking slowdown. See bnc#731218.
|
|
|
|
Subject: manager: Properly show vm desc in tooltip w/ special xml characters
|
|
From: Cole Robinson crobinso@redhat.com Mon Sep 26 11:05:55 2011 -0400
|
|
Date: Mon Sep 26 11:07:52 2011 -0400:
|
|
Git: 0a7640c593a54a6a3f558583d82f8b27c7a7d1d1
|
|
|
|
Index: virt-manager-0.10.0/virtManager/manager.py
|
|
===================================================================
|
|
--- virt-manager-0.10.0.orig/virtManager/manager.py
|
|
+++ virt-manager-0.10.0/virtManager/manager.py
|
|
@@ -813,7 +813,7 @@ class vmmManager(vmmGObjectUI):
|
|
row.insert(ROW_STATUS, vm.run_status())
|
|
row.insert(ROW_STATUS_ICON, vm.run_status_icon_name())
|
|
row.insert(ROW_KEY, vm.get_uuid())
|
|
- row.insert(ROW_HINT, util.xml_escape(vm.get_description()))
|
|
+ row.insert(ROW_HINT, vm.get_description())
|
|
row.insert(ROW_IS_CONN, False)
|
|
row.insert(ROW_IS_CONN_CONNECTED, True)
|
|
row.insert(ROW_IS_VM, True)
|
|
@@ -965,7 +965,7 @@ class vmmManager(vmmGObjectUI):
|
|
desc = vm.get_description()
|
|
if not can_set_row_none:
|
|
desc = desc or ""
|
|
- row[ROW_HINT] = util.xml_escape(desc)
|
|
+ row[ROW_HINT] = desc
|
|
|
|
model.row_changed(row.path, row.iter)
|
|
|