summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/Workspace.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3/Workspace.java')
-rw-r--r--src/com/android/launcher3/Workspace.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/com/android/launcher3/Workspace.java b/src/com/android/launcher3/Workspace.java
index 8d467195e..7812a5bc1 100644
--- a/src/com/android/launcher3/Workspace.java
+++ b/src/com/android/launcher3/Workspace.java
@@ -578,11 +578,10 @@ public class Workspace extends PagedView
if (qsb == null) {
// In transposed layout, we add the QSB in the Grid. As workspace does not touch the
// edges, we do not need a full width QSB.
- if (mLauncher.getDeviceProfile().isVerticalBarLayout()) {
- qsb = mLauncher.getLayoutInflater().inflate(R.layout.qsb_container, firstPage, false);
- } else {
- qsb = new Space(getContext());
- }
+ qsb = mLauncher.getLayoutInflater().inflate(
+ mLauncher.getDeviceProfile().isVerticalBarLayout()
+ ? R.layout.qsb_container : R.layout.qsb_blocker_view,
+ firstPage, false);
}
CellLayout.LayoutParams lp = new CellLayout.LayoutParams(0, 0, firstPage.getCountX(), 1);
@@ -2147,7 +2146,7 @@ public class Workspace extends PagedView
return workspaceAnim;
}
- State getState() {
+ public State getState() {
return mState;
}