Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a208250c authored by Nihanth Subramanya's avatar Nihanth Subramanya
Browse files

SystemUI: Fix typo

Change VISIBLE to GONE to make it work as intended and match what the comment above says. This was a mistake I made with the bottom aligned notifications for bottom bar that I never noticed/fixed.

Change-Id: Ic11ba2b7dd09835b5e2f95b47c60452a4b0cf394
parent 2770abd7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -467,7 +467,7 @@ public class StatusBarService extends Service implements CommandQueue.Callbacks
            // Disable compact carrier when bottom bar is enabled for now
            // till we find a better solution (looks ugly alone at the top)
            if (mBottomBar)
                mCompactCarrierLayout.setVisibility(View.VISIBLE);
                mCompactCarrierLayout.setVisibility(View.GONE);
            if (mLatest.hasClearableItems())
                mCompactClearButton.setVisibility(View.VISIBLE);
        } else {