mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
Merge remote-tracking branch 'origin/patch'
This commit is contained in:
commit
6b04eb793f
33 changed files with 1219 additions and 368 deletions
|
@ -297,7 +297,16 @@ public class DefaultGraphDisplay implements GraphDisplay {
|
|||
Lens lens = Lens.builder().lensShape(Lens.Shape.RECTANGLE).magnification(3.f).build();
|
||||
lens.setMagnification(2.f);
|
||||
LensMagnificationGraphMousePlugin magnificationPlugin =
|
||||
new LensMagnificationGraphMousePlugin(1.f, 60.f, .2f);
|
||||
new LensMagnificationGraphMousePlugin(1.f, 60.f, .2f) {
|
||||
// Override to address a bug when using a high resolution mouse wheel.
|
||||
// May be removed when jungrapht-visualization version is updated
|
||||
@Override
|
||||
public void mouseWheelMoved(MouseWheelEvent e) {
|
||||
if (e.getWheelRotation() != 0) {
|
||||
super.mouseWheelMoved(e);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
MutableTransformer transformer = viewer.getRenderContext()
|
||||
.getMultiLayerTransformer()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue