Merge pull request #1585 from eugene7646/data_result_panel_fix

Data result panel fix
This commit is contained in:
Richard Cordovano 2015-09-23 17:09:06 -04:00
commit 7f3f65f540

View File

@ -653,7 +653,10 @@ public class DataResultPanel extends javax.swing.JPanel implements DataResult, C
* all of the children when they decide if they support the content
*/
if (waitingForData && containsReal(delta)) {
waitingForData = false;
/* NOTE: setting waitingForData to false will result in tabs not
being updated as more data gets added. This includes the counter
for number of items being displayed */
// waitingForData = false;
if (SwingUtilities.isEventDispatchThread()) {
setupTabs(nme.getNode());
} else {