f830495c36
Fix setting window title when VNC mouse is grabbed (bz 788443) Advertise VDI format in disk details (bz 761300) Don't let an unavailable host hang the app (bz 766769) Don't overwrite existing create dialog when reshowing (bz 754152) Improve tooltip for 'force console shortcuts' (bz 788448)
23 lines
699 B
Diff
23 lines
699 B
Diff
commit 265e04205e4766f459d4ced516dbd784cf2ca57f
|
|
Author: Cole Robinson <crobinso@redhat.com>
|
|
Date: Tue Feb 7 17:13:59 2012 -0500
|
|
|
|
Add VDI to disk format list
|
|
|
|
People actually distribute images in that format:
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=761300
|
|
|
|
diff --git a/src/virtManager/uihelpers.py b/src/virtManager/uihelpers.py
|
|
index c274592..3ba4a71 100644
|
|
--- a/src/virtManager/uihelpers.py
|
|
+++ b/src/virtManager/uihelpers.py
|
|
@@ -397,6 +397,7 @@ def build_storage_format_combo(vm, combo):
|
|
formats = ["raw", "qcow2"]
|
|
if vm.rhel6_defaults():
|
|
formats.append("vmdk")
|
|
+ formats.append("vdi")
|
|
|
|
for m in formats:
|
|
dev_model.append([m])
|