Fixing translateable attribute in strings, and click-through in AppsCustomize.
Change-Id: I8ceff05f5d38021c74731cddf71391b55049b2af
This commit is contained in:
@@ -613,10 +613,15 @@ public class Workspace extends SmoothPagedView
|
||||
if (mLauncher.isAllAppsVisible() && mShrinkState == ShrinkState.BOTTOM_HIDDEN) {
|
||||
// Intercept this event so we can show the workspace in full view
|
||||
// when it is clicked on and it is small
|
||||
AllAppsPagedView allApps = (AllAppsPagedView)
|
||||
mLauncher.findViewById(R.id.all_apps_paged_view);
|
||||
if (allApps != null) {
|
||||
allApps.onInterceptTouchEvent(ev);
|
||||
PagedView appsPane = null;
|
||||
if (LauncherApplication.isScreenLarge()) {
|
||||
appsPane = (PagedView) mLauncher.findViewById(R.id.all_apps_paged_view);
|
||||
} else {
|
||||
appsPane = (PagedView) mLauncher.findViewById(R.id.apps_customize_pane_content);
|
||||
}
|
||||
|
||||
if (appsPane != null) {
|
||||
appsPane.onInterceptTouchEvent(ev);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user