Skip to content

Commit d74a730

Browse files
committed
Draw indicator on static drawer.
1 parent 96cdcdc commit d74a730

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

menudrawer/src/net/simonvt/menudrawer/MenuDrawer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ protected void dispatchDraw(Canvas canvas) {
671671
if (mDropShadowEnabled && (offsetPixels != 0 || mIsStatic)) {
672672
drawDropShadow(canvas);
673673
}
674-
if (shouldDrawIndicator() && offsetPixels != 0) {
674+
if (shouldDrawIndicator() && (offsetPixels != 0 || mIsStatic)) {
675675
drawIndicator(canvas);
676676
}
677677
}

0 commit comments

Comments
 (0)