summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorMarkus Koivisto <markus@vaadin.com>2014-08-04 14:25:16 +0300
committerVaadin Code Review <review@vaadin.com>2014-08-05 08:31:02 +0000
commitae37910f4cb307c929df32e6499b9e1872192377 (patch)
tree5690abd4b9716b38d3e74f3442993e463b334b09 /server
parentf5bb5f33883e31d128fe784b4a0d874b970fb3f4 (diff)
downloadvaadin-framework-ae37910f4cb307c929df32e6499b9e1872192377.tar.gz
vaadin-framework-ae37910f4cb307c929df32e6499b9e1872192377.zip
Reverting multiple commits that caused 100+ regression tests to fail.
Commits reverted: * 392e8a0 - Minor refactor to #14147 patch * 8d470c9 - Context menu is not shown in Table body on mobi... (#13694) * f7dc719 - Fix Table stuck scroll position after setting ... (#14147) Change-Id: I3f5ed7fa15a9cfebce7a57662d229bf46118c5d6
Diffstat (limited to 'server')
-rw-r--r--server/src/com/vaadin/ui/Table.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/com/vaadin/ui/Table.java b/server/src/com/vaadin/ui/Table.java
index 82e87eb10d..a8265662ea 100644
--- a/server/src/com/vaadin/ui/Table.java
+++ b/server/src/com/vaadin/ui/Table.java
@@ -1513,7 +1513,7 @@ public class Table extends AbstractSelect implements Action.Container,
* position not be updated correctly when the lazy rows are
* finally rendered.
*/
- currentPageFirstItemIndexOnLastPage = currentPageFirstItemIndex;
+ currentPageFirstItemIndexOnLastPage = indexOnLastPage;
}
} else {