summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/keyboard
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2016-09-28 16:47:32 -0700
committerSunny Goyal <sunnygoyal@google.com>2016-10-10 13:36:03 -0700
commit740ac7f00e0b847b8e392800f7948d93493e11d6 (patch)
tree4963fa6facfe75cb4165f818f4a95c62d6226ec9 /src/com/android/launcher3/keyboard
parentcc88b5bc94d32740e605a1795e91ad11d0664567 (diff)
downloadandroid_packages_apps_Trebuchet-740ac7f00e0b847b8e392800f7948d93493e11d6.tar.gz
android_packages_apps_Trebuchet-740ac7f00e0b847b8e392800f7948d93493e11d6.tar.bz2
android_packages_apps_Trebuchet-740ac7f00e0b847b8e392800f7948d93493e11d6.zip
Refactoring floating view opening/closing logic
> Creating a base view for floating panels with some common methods > Moving the getOpen method to individual classes > Moving the folder icon animation logic to folder icon > Moving all the logic related for opening folder to Folder class Change-Id: I898dfb6870b857cb921d2729b89618bc43ff2e88
Diffstat (limited to 'src/com/android/launcher3/keyboard')
-rw-r--r--src/com/android/launcher3/keyboard/CustomActionsPopup.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/launcher3/keyboard/CustomActionsPopup.java b/src/com/android/launcher3/keyboard/CustomActionsPopup.java
index 6056f4c10..6603e93b0 100644
--- a/src/com/android/launcher3/keyboard/CustomActionsPopup.java
+++ b/src/com/android/launcher3/keyboard/CustomActionsPopup.java
@@ -46,7 +46,7 @@ public class CustomActionsPopup implements OnMenuItemClickListener {
public CustomActionsPopup(Launcher launcher, View icon) {
mLauncher = launcher;
mIcon = icon;
- DeepShortcutsContainer container = launcher.getOpenShortcutsContainer();
+ DeepShortcutsContainer container = DeepShortcutsContainer.getOpen(launcher);
if (container != null) {
mDelegate = container.getAccessibilityDelegate();
} else {