Fixed a crazy popover crash

pull/14/head
Sam Bosley 14 years ago
parent 73df7d23ee
commit c4da3443b5

@ -68,4 +68,11 @@ public class FragmentPopover extends QuickActionWidget {
protected int getArrowLeftMargin(View arrow) {
return mRect.left + arrow.getMeasuredWidth() / 2 - (int) (10 * metrics.density);
}
@Override
public void show(View anchor) {
if (isShowing())
return;
super.show(anchor);
}
}

Loading…
Cancel
Save