This commit is contained in:
Sergey Solovyev 2012-10-03 22:53:56 +04:00
parent 8ed6a2111b
commit e3f7fd5cb1

View File

@ -403,7 +403,10 @@ public class CalculatorPlotFragment extends SherlockFragment implements Calculat
uiHandler.post(new Runnable() {
@Override
public void run() {
updateGraphicalView(getView());
final View view = getView();
if (view != null) {
updateGraphicalView(view);
}
}
});
}