Only update UI controls when the page change event is for the node being viewed.

This commit is contained in:
esaunders 2019-06-18 15:03:14 -04:00
parent 13d99eef92
commit b06c2d84ec

View File

@ -883,7 +883,10 @@ public class DataResultViewerTable extends AbstractDataResultViewer {
togglePageControls(true);
}
updateControls();
// Only update UI controls if this event is for the node currently being viewed.
if (nodeName.equals(rootNode.getName())) {
updateControls();
}
}
}