-
Notifications
You must be signed in to change notification settings - Fork 6.1k
JDK-8290016: IGV: Fix graph panning when mouse dragged outside of window #9470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
👋 Welcome back tholenstein! A progress list of the required criteria for merging this PR into |
@tobiasholenstein The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
Webrevs
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good.
@tobiasholenstein This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 141 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
scrollPane = null; | ||
return state ? State.createLocked (widget, this) : State.REJECTED; | ||
} | ||
return state ? State.REJECTED : State.REJECTED; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That does not look correct.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for catching that! You are right, this is not correct.
I updated the PR to make the locking more clear:
CustomizablePanAction
extends WidgetAction.LockedAdapter
which is used for long-term actions like panning/moving. All methods return the locked
state if isLocked()
is true and rejected
otherwise.
The locked
state means the event is processed and the processing has to stopped immediately (no other action should processed it).
The rejected
state the event is not processed by the action and has to be processed by other actions too.
In our case CustomizablePanAction
should be locked
when the user presses the mouse inside of the panning area (the graph). And CustomizablePanAction
should be unlocked
when the mouse button is released again. Leaving the panning area (mouseExited
) and entering it again (mouseEntered
) should not change the locking state as long as the user does not release the mouse.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks reasonable.
...aphVisualizer/View/src/main/java/com/sun/hotspot/igv/view/actions/CustomizablePanAction.java
Show resolved
Hide resolved
thanks @vnkozlov and @TobiHartmann for the reviews! |
/integrate |
Going to push as commit 604a115.
Your commit was automatically rebased without conflicts. |
@tobiasholenstein Pushed as commit 604a115. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
A graph in IGV can be moved by dragging it with the left mouse button (called panning).

If the mouse left the visible window of the graph during dragging, the diagram started to move in the opposite direction. This was annoying. Now panning stops as soon as the mouse leaves the window.

In selection mode, the graph still moves when the mouse is dragged outside the window, as this is meant to make a larger selection.

Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk pull/9470/head:pull/9470
$ git checkout pull/9470
Update a local copy of the PR:
$ git checkout pull/9470
$ git pull https://git.openjdk.org/jdk pull/9470/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 9470
View PR using the GUI difftool:
$ git pr show -t 9470
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/9470.diff