Merge lp:~yrke/tapaal/fix1947517-3_9 into lp:tapaal/3.9

Proposed by Kenneth Yrke Jørgensen
Status: Rejected
Rejected by: Kenneth Yrke Jørgensen
Proposed branch: lp:~yrke/tapaal/fix1947517-3_9
Merge into: lp:tapaal/3.9
Diff against target: 26 lines (+5/-1)
2 files modified
src/dk/aau/cs/gui/TabContent.java (+4/-0)
src/pipe/gui/handler/ArcPathPointHandler.java (+1/-1)
To merge this branch: bzr merge lp:~yrke/tapaal/fix1947517-3_9
Reviewer Review Type Date Requested Status
TAPAAL Maintainers Pending
Review via email: mp+411215@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'src/dk/aau/cs/gui/TabContent.java'
--- src/dk/aau/cs/gui/TabContent.java 2021-10-15 14:47:54 +0000
+++ src/dk/aau/cs/gui/TabContent.java 2021-11-03 10:12:32 +0000
@@ -2738,6 +2738,10 @@
2738 e-> ((Arc) e.pno).getMouseHandler().getPopup(e.e).show(e.pno, e.e.getX(), e.e.getY())2738 e-> ((Arc) e.pno).getMouseHandler().getPopup(e.e).show(e.pno, e.e.getX(), e.e.getY())
2739 );2739 );
2740 registerEvent(2740 registerEvent(
2741 e->e.pno instanceof ArcPathPoint && e.a == MouseAction.rightClicked,
2742 e-> ((ArcPathPoint) e.pno).getMouseHandler().getPopup(e.e).show(e.pno, e.e.getX(), e.e.getY())
2743 );
2744 registerEvent(
2741 e->e.pno instanceof AnnotationNote && e.a == MouseAction.doubleClicked,2745 e->e.pno instanceof AnnotationNote && e.a == MouseAction.doubleClicked,
2742 e-> ((AnnotationNote) e.pno).enableEditMode()2746 e-> ((AnnotationNote) e.pno).enableEditMode()
2743 );2747 );
27442748
=== modified file 'src/pipe/gui/handler/ArcPathPointHandler.java'
--- src/pipe/gui/handler/ArcPathPointHandler.java 2020-10-09 09:58:09 +0000
+++ src/pipe/gui/handler/ArcPathPointHandler.java 2021-11-03 10:12:32 +0000
@@ -37,7 +37,7 @@
37 popup.insert(new JPopupMenu.Separator(), 0);37 popup.insert(new JPopupMenu.Separator(), 0);
3838
39 if (((ArcPathPoint) myObject).getIndex() == 0) {39 if (((ArcPathPoint) myObject).getIndex() == 0) {
40 return null;40 return popup;
41 } else {41 } else {
42 JMenuItem menuItem = new JMenuItem(new ToggleArcPointAction((ArcPathPoint) myObject));42 JMenuItem menuItem = new JMenuItem(new ToggleArcPointAction((ArcPathPoint) myObject));
4343

Subscribers

People subscribed via source and target branches