mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-05 10:26:52 +00:00
Minor fixes to stop crashing on panning/dragging on phones.
Change-Id: Ibfc0072d6db039b97876702b2c0577359a7ae567
This commit is contained in:
@@ -474,7 +474,7 @@ public class CellLayout extends ViewGroup implements Dimmable {
|
||||
// When we're small, we are either drawn normally or in the "accepts drops" state (during
|
||||
// a drag). However, we also drag the mini hover background *over* one of those two
|
||||
// backgrounds
|
||||
if (mBackgroundAlpha > 0.0f) {
|
||||
if (LauncherApplication.isScreenXLarge() && mBackgroundAlpha > 0.0f) {
|
||||
Drawable bg;
|
||||
boolean mini = getScaleX() < 0.5f;
|
||||
|
||||
|
||||
@@ -995,9 +995,9 @@ public final class Launcher extends Activity
|
||||
final View configureButton = findViewById(R.id.configure_button);
|
||||
|
||||
if (LauncherApplication.isScreenXLarge()) {
|
||||
mDeleteZone.setOverlappingViews(new View[] { allAppsButton, divider, configureButton });
|
||||
deleteZone.setOverlappingViews(new View[] { allAppsButton, divider, configureButton });
|
||||
} else {
|
||||
deleteZone.setOverlappingView(configureButton);
|
||||
deleteZone.setOverlappingView(findViewById(R.id.all_apps_button_cluster));
|
||||
}
|
||||
dragController.addDragListener(deleteZone);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user