private void checkFocusMode(LGParameters lgParameters) {
   if (this.mGet.getApplicationMode() == 0
       && this.mGet.getCameraId() == 0
       && Setting.HELP_FACE_TRACKING_LED.equals(this.mGet.getSettingValue(Setting.KEY_FOCUS))) {
     ListPreference pref = this.mGet.findPreference(Setting.KEY_FOCUS);
     if (pref != null) {
       this.mGet.setSetting(Setting.KEY_FOCUS, pref.getDefaultValue());
     }
     this.mGet.stopFaceDetection();
     lgParameters.getParameters().set(CameraConstants.FOCUS_MODE_MANUAL, 0);
     if (this.mGet.isIndicatorControllerInitialized()) {
       this.mGet.runOnUiThread(
           new Runnable() {
             public void run() {
               SetCameraColorEffect.this.mGet.removePostRunnable(this);
               SetCameraColorEffect.this.mGet.showFocus();
               SetCameraColorEffect.this.mGet.updateFocusIndicator();
               SetCameraColorEffect.this.mGet.showManualFocusController(false);
             }
           });
     }
     this.mGet.toast((int) R.string.note_focus_mode_set_to_auto);
     this.mGet.setQuickFunctionControllerAllMenuIcons();
   }
 }