[gnome-boxes] libvirt-machine-props: Saner resource graphs ceiling



commit e649112386f85516fe1c45cc8a4a6fe6b62a7dbc
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Wed Feb 25 15:21:25 2015 +0000

    libvirt-machine-props: Saner resource graphs ceiling

 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 a52e28b..0cec81c 100644
--- a/src/libvirt-machine-properties.vala
+++ b/src/libvirt-machine-properties.vala
@@ -376,13 +376,13 @@ private class Boxes.LibvirtMachineProperties: GLib.Object, Boxes.IPropertiesProv
         grid.attach (label, 0, 1, 1, 1);
 
         // I/O
-        var io_graph = new ResourceGraph (20);
+        var io_graph = new ResourceGraph (104857600); // 100 MiB/s
         grid.attach (io_graph, 1, 0, 1, 1);
         label = new Gtk.Label (_("I/O"));
         grid.attach (label, 1, 1, 1, 1);
 
         // Network
-        var net_graph = new ResourceGraph (20);
+        var net_graph = new ResourceGraph (1048576); // 1 MiB/s
         grid.attach (net_graph, 2, 0, 1, 1);
         label = new Gtk.Label (_("Network"));
         grid.attach (label, 2, 1, 1, 1);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]