Browse Source

Fix Grid to not refresh already focused cell (#19653)

This removes a row repaint when a cell that already has focus is clicked
again.

Change-Id: I3e4f4f1aec49e2128cd47f7c0b1b1bb4611fbb04
tags/7.7.0.alpha1
Teemu Suo-Anttila 8 years ago
parent
commit
822d72fef7
1 changed files with 0 additions and 1 deletions
  1. 0
    1
      client/src/com/vaadin/client/widgets/Grid.java

+ 0
- 1
client/src/com/vaadin/client/widgets/Grid.java View File

@@ -2527,7 +2527,6 @@ public class Grid<T> extends ResizeComposite implements
if (rowIndex == rowWithFocus
&& cellFocusRange.contains(columnIndexDOM)
&& container == this.containerWithFocus) {
refreshRow(rowWithFocus);
return;
}


Loading…
Cancel
Save