Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Weigelt2012-11-01 14:32:49 +0000
committerIngo Weigelt2012-11-01 14:32:49 +0000
commit3106bd5627c3907dce00b16b3258e620c5a977c1 (patch)
tree2d31e50afbc56a2e408d0d0ad24dd536281eda6b
parentce2f3c44079fc36e9b804ed20373aadfd101e8cb (diff)
downloadorg.eclipse.rmf-3106bd5627c3907dce00b16b3258e620c5a977c1.tar.gz
org.eclipse.rmf-3106bd5627c3907dce00b16b3258e620c5a977c1.tar.xz
org.eclipse.rmf-3106bd5627c3907dce00b16b3258e620c5a977c1.zip
fix bug 392809 - Dragging anything to the first Cell not possible
-rw-r--r--org.eclipse.rmf.pror.reqif10.editor/src/org/eclipse/rmf/pror/reqif10/editor/agilegrid/ProrAgileGridViewer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.rmf.pror.reqif10.editor/src/org/eclipse/rmf/pror/reqif10/editor/agilegrid/ProrAgileGridViewer.java b/org.eclipse.rmf.pror.reqif10.editor/src/org/eclipse/rmf/pror/reqif10/editor/agilegrid/ProrAgileGridViewer.java
index f8cccad7..3941f96d 100644
--- a/org.eclipse.rmf.pror.reqif10.editor/src/org/eclipse/rmf/pror/reqif10/editor/agilegrid/ProrAgileGridViewer.java
+++ b/org.eclipse.rmf.pror.reqif10.editor/src/org/eclipse/rmf/pror/reqif10/editor/agilegrid/ProrAgileGridViewer.java
@@ -619,7 +619,7 @@ public class ProrAgileGridViewer extends Viewer {
Point pos = agileGrid.toControl(e.x, e.y);
Cell cell = agileGrid.getCell(pos.x, pos.y);
- ProrRow row = cell.row > 0 ? contentProvider
+ ProrRow row = cell.row >= 0 ? contentProvider
.getProrRow(cell.row) : null;
Object target = null;
if (row instanceof ProrRowSpecHierarchy) {

Back to the top