From f32ab20267e7279777b4fa1aaaec5a9653a9b75f Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Mon, 5 Mar 2012 20:35:25 +0000 Subject: [PATCH] bluetooth: Fix connectedMenuItem variable case. This fixes a regression introduced in d856338f86. --- js/ui/status/bluetooth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/status/bluetooth.js b/js/ui/status/bluetooth.js index ea864a779..f6d2f306f 100644 --- a/js/ui/status/bluetooth.js +++ b/js/ui/status/bluetooth.js @@ -181,7 +181,7 @@ const Indicator = new Lang.Class({ // update connected property if (device.can_connect) - item._connectedMenuitem.setToggleState(device.connected); + item._connectedMenuItem.setToggleState(device.connected); }, _createDeviceItem: function(device) {