Adjusted ByteViewer Address field's preferred size and fixed tests

This commit is contained in:
ghidragon 2023-12-13 16:40:29 -05:00
parent 0744c66e0f
commit 565fb8d307
2 changed files with 4 additions and 3 deletions

View File

@ -788,7 +788,8 @@ public class ByteViewerPanel extends JPanel implements LayoutModel, LayoutListen
@Override
public Dimension getPreferredViewSize() {
return new Dimension(500, 500);
// this is the preferred size of the address panel
return new Dimension(100, 500);
}
@Override

View File

@ -1613,12 +1613,12 @@ public class ClipboardPluginTest extends AbstractGhidraHeadedIntegrationTest {
@Override
public Point getStartMouseDragLocation() {
return new Point(100, 30);
return new Point(120, 30);
}
@Override
public Point getEndMouseDragLocation() {
return new Point(300, 30);
return new Point(320, 30);
}
@Override