summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/widget
diff options
context:
space:
mode:
authorTony Wickham <twickham@google.com>2017-06-26 21:34:58 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2017-06-26 21:34:59 +0000
commit7a0ec3f28c4e055a4be7a46fbf46f5f3f5019040 (patch)
tree1ebb9da6ae2ab0d14a40cc4a1ef36ecc4c0a0388 /src/com/android/launcher3/widget
parent3ed30765502f45cc0e922954840ef11f474e3c8b (diff)
parent093c3ac7c3e265bda0b9dbd29138ced28126e14e (diff)
downloadandroid_packages_apps_Trebuchet-7a0ec3f28c4e055a4be7a46fbf46f5f3f5019040.tar.gz
android_packages_apps_Trebuchet-7a0ec3f28c4e055a4be7a46fbf46f5f3f5019040.tar.bz2
android_packages_apps_Trebuchet-7a0ec3f28c4e055a4be7a46fbf46f5f3f5019040.zip
Merge "Add dark widgets theme" into ub-launcher3-dorval-polish
Diffstat (limited to 'src/com/android/launcher3/widget')
-rw-r--r--src/com/android/launcher3/widget/WidgetsBottomSheet.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/com/android/launcher3/widget/WidgetsBottomSheet.java b/src/com/android/launcher3/widget/WidgetsBottomSheet.java
index d87e7fb98..fff3472ae 100644
--- a/src/com/android/launcher3/widget/WidgetsBottomSheet.java
+++ b/src/com/android/launcher3/widget/WidgetsBottomSheet.java
@@ -22,7 +22,6 @@ import android.animation.ObjectAnimator;
import android.content.Context;
import android.graphics.Rect;
import android.util.AttributeSet;
-import android.view.ContextThemeWrapper;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.MotionEvent;
@@ -77,7 +76,7 @@ public class WidgetsBottomSheet extends AbstractFloatingView implements Insettab
}
public WidgetsBottomSheet(Context context, AttributeSet attrs, int defStyleAttr) {
- super(new ContextThemeWrapper(context, R.style.WidgetContainerTheme), attrs, defStyleAttr);
+ super(context, attrs, defStyleAttr);
setWillNotDraw(false);
mLauncher = Launcher.getLauncher(context);
mOpenCloseAnimator = LauncherAnimUtils.ofPropertyValuesHolder(this);