}
void doUpdateScaleLabel() {
IContributionManager bar = mapEditorSite.getActionBars().getStatusLineManager();
if (bar == null)
return;
ScaleRatioLabel label = (ScaleRatioLabel) bar.find(ScaleRatioLabel.SCALE_ITEM_ID);
if (label == null) {
label = new ScaleRatioLabel(this);
bar.appendToGroup(StatusLineManager.MIDDLE_GROUP, label);
label.setVisible(true);
bar.update(true);
}
label.setViewportModel(getMap().getViewportModel());
}