[gnome-boxes] libvirt-machine-properties: 64M as min & step for RAM
- From: Zeeshan Ali Khattak <zeeshanak src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-boxes] libvirt-machine-properties: 64M as min & step for RAM
- Date: Fri, 15 Feb 2013 14:29:38 +0000 (UTC)
commit 4a7ee09c74278329b69100f26e4ffb64a07826f2
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date: Wed Feb 6 00:24:06 2013 +0200
libvirt-machine-properties: 64M as min & step for RAM
The 1M step and min we use for RAM is too small. Bump it to 64M.
https://bugzilla.gnome.org/show_bug.cgi?id=688333
src/libvirt-machine-properties.vala | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/libvirt-machine-properties.vala b/src/libvirt-machine-properties.vala
index 3d9ba4b..7d71aad 100644
--- a/src/libvirt-machine-properties.vala
+++ b/src/libvirt-machine-properties.vala
@@ -354,9 +354,9 @@ private class Boxes.LibvirtMachineProperties: GLib.Object, Boxes.IPropertiesProv
var property = add_size_property (ref list,
_("Memory"),
machine.domain_config.memory,
- Osinfo.MEBIBYTES,
+ 64 * Osinfo.MEBIBYTES,
max_ram * Osinfo.KIBIBYTES,
- Osinfo.MEBIBYTES);
+ 64 * Osinfo.MEBIBYTES);
property.changed.connect (on_ram_changed);
this.notify["state"].connect (() => {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]