From aece754d77c99c22083949f5c3075946fe86de38 Mon Sep 17 00:00:00 2001 From: Andre Eisenbach Date: Fri, 23 Sep 2016 17:13:27 -0700 Subject: [PATCH] Move Bluetooth device "Forget" button to the left "Forget" and "OK" actions are too close together. Bug: 31693959 Change-Id: Iee452347a53b186df7aecad5d971edcfb7645f1d --- src/com/android/settings/bluetooth/DeviceProfilesSettings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/settings/bluetooth/DeviceProfilesSettings.java b/src/com/android/settings/bluetooth/DeviceProfilesSettings.java index ca4d4f52457..81614e0c569 100755 --- a/src/com/android/settings/bluetooth/DeviceProfilesSettings.java +++ b/src/com/android/settings/bluetooth/DeviceProfilesSettings.java @@ -103,7 +103,7 @@ public final class DeviceProfilesSettings extends DialogFragment implements deviceName.setText(mCachedDevice.getName(), TextView.BufferType.EDITABLE); return new AlertDialog.Builder(getContext()) .setView(mRootView) - .setNegativeButton(R.string.forget, this) + .setNeutralButton(R.string.forget, this) .setPositiveButton(R.string.okay, this) .setTitle(R.string.bluetooth_preference_paired_devices) .create();