[virt-tools-list] [PATCH 3/3] virt-manager: AUTOSIZE the VM name column in the manager window

Giuseppe Scrivano gscrivan at redhat.com
Tue Sep 10 14:07:11 UTC 2013


Previously, if a very long "title" was shortened, the column was
maintaining its original size, leaving the second column far away.
To avoid it, enforce the first column to be automatically resized
whenever the name of the VM is changed.

Signed-off-by: Giuseppe Scrivano <gscrivan at redhat.com>
---
 virtManager/manager.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/virtManager/manager.py b/virtManager/manager.py
index c481c7b..185b946 100644
--- a/virtManager/manager.py
+++ b/virtManager/manager.py
@@ -408,6 +408,7 @@ class vmmManager(vmmGObjectUI):
 
         nameCol = Gtk.TreeViewColumn(_("Name"))
         nameCol.set_expand(True)
+        nameCol.set_sizing(Gtk.TreeViewColumnSizing.AUTOSIZE)
         nameCol.set_spacing(6)
         nameCol.set_sort_column_id(COL_NAME)
 
-- 
1.8.3.1




More information about the virt-tools-list mailing list