mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-01 16:26:47 +00:00
Merge "Only inset widgets if workspaceTopPadding is greater than the widget padding." into sc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
3ed65ede16
@@ -399,8 +399,10 @@ public class DeviceProfile {
|
||||
public boolean shouldInsetWidgets() {
|
||||
Rect widgetPadding = inv.defaultWidgetPadding;
|
||||
|
||||
// Check all sides to ensure that the widget won't overlap into another cell.
|
||||
return cellLayoutBorderSpacingPx > widgetPadding.left
|
||||
// Check all sides to ensure that the widget won't overlap into another cell, or into
|
||||
// status bar.
|
||||
return workspaceTopPadding > widgetPadding.top
|
||||
&& cellLayoutBorderSpacingPx > widgetPadding.left
|
||||
&& cellLayoutBorderSpacingPx > widgetPadding.top
|
||||
&& cellLayoutBorderSpacingPx > widgetPadding.right
|
||||
&& cellLayoutBorderSpacingPx > widgetPadding.bottom;
|
||||
|
||||
Reference in New Issue
Block a user