]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixes #1181
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Fri, 23 Nov 2007 08:09:50 +0000 (08:09 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Fri, 23 Nov 2007 08:09:50 +0000 (08:09 +0000)
svn changeset:2896/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/client/ui/IScrollTable.java

index cbc9c53eabed77d452e08889ab753774db889789..c4c5f95743c09553d10c726cb1d604a0641fa9c0 100644 (file)
@@ -1882,7 +1882,7 @@ public class IScrollTable extends Composite implements Table, ScrollListener,
 
             public void showContextMenu(Event event) {
                 ApplicationConnection.getConsole().log("Context menu");
-                if (actionKeys != null) {
+                if (enabled && actionKeys != null) {
                     int left = DOM.eventGetClientX(event);
                     int top = DOM.eventGetClientY(event);
                     top += Window.getScrollTop();