/*
  * (non-Javadoc)
  *
  * @see com.aviary.android.feather.effects.AbstractEffectPanel#onCreate(android.graphics.Bitmap)
  */
 @Override
 public void onCreate(Bitmap bitmap) {
   super.onCreate(bitmap);
   mWheel = (Wheel) getOptionView().findViewById(R.id.wheel);
   mWheelRadio = (WheelRadio) getOptionView().findViewById(R.id.wheel_radio);
   ConfigService config = getContext().getService(ConfigService.class);
   mLivePreview = config.getBoolean(R.integer.feather_brightness_live_preview);
   onCreateIcons();
 }
 @Override
 public void onCreate(Bitmap bitmap) {
   super.onCreate(bitmap);
   enableFastPreview = Constants.getFastPreviewEnabled();
 }