[gnome-shell] network: treat LTE-only modems as GSM ones
- From: Aleksander Morgado <aleksm src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] network: treat LTE-only modems as GSM ones
- Date: Tue, 5 Feb 2013 14:49:59 +0000 (UTC)
commit ceb035e9b30249b7f504e7f22dabfdaf817ccf73
Author: Aleksander Morgado <aleksander lanedo com>
Date: Tue Feb 5 10:05:50 2013 +0100
network: treat LTE-only modems as GSM ones
LTE-only modems need to be treated as GSM/HSPA modems, as they all are 3GPP
modems and they all need the same kind of configuration (APN, user, password,
PIN...).
https://bugzilla.gnome.org/show_bug.cgi?id=688144
js/ui/status/network.js | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/status/network.js b/js/ui/status/network.js
index ff949e7..e738a11 100644
--- a/js/ui/status/network.js
+++ b/js/ui/status/network.js
@@ -719,7 +719,8 @@ const NMDeviceModem = new Lang.Class({
this._connectionType = NetworkManager.SETTING_CDMA_SETTING_NAME;
} else if (this._capabilities & NetworkManager.DeviceModemCapabilities.LTE) {
is_wwan = true;
- // FIXME: support signal quality
+ this.mobileDevice = new ModemManager.ModemGsm(device.udi);
+ this._connectionType = NetworkManager.SETTING_GSM_SETTING_NAME;
}
if (is_wwan) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]