[gnome-boxes] wizard: Correct architecture comparison
- From: Zeeshan Ali Khattak <zeeshanak src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-boxes] wizard: Correct architecture comparison
- Date: Wed, 22 Feb 2012 13:27:46 +0000 (UTC)
commit 7bf06ef70d202b1dcf21c49eda99bfb5fd139150
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date: Wed Feb 22 04:34:43 2012 +0200
wizard: Correct architecture comparison
All medias were getting presented as 64-bit.
https://bugzilla.gnome.org/show_bug.cgi?id=670573
src/wizard-source.vala | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/src/wizard-source.vala b/src/wizard-source.vala
index f5977ac..86e1f41 100644
--- a/src/wizard-source.vala
+++ b/src/wizard-source.vala
@@ -168,7 +168,9 @@ private class Boxes.WizardSource: GLib.Object {
vbox.pack_start (label, true, true);
if (media.os_media != null) {
- var architecture = (media.os_media.architecture == "x86") ? _("32-bit x86") : _("64-bit x86");
+ var architecture = (media.os_media.architecture == "i386") ?
+ _("32-bit x86 system") :
+ _("64-bit x86 system");
label = new Gtk.Label (architecture);
label.get_style_context ().add_class ("boxes-step-label");
label.xalign = 0.0f;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]