From 3ea273fbfa4c4239d8a24a84f67e037748638381 Mon Sep 17 00:00:00 2001 From: dragonmacher <48328597+dragonmacher@users.noreply.github.com> Date: Wed, 8 Jul 2026 14:23:55 -0400 Subject: [PATCH] GP-7039 - Fixed missing input field --- .../java/ghidra/app/plugin/core/select/SelectBytesDialog.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/select/SelectBytesDialog.java b/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/select/SelectBytesDialog.java index e44c5f3b0a..d8153df7e2 100644 --- a/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/select/SelectBytesDialog.java +++ b/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/select/SelectBytesDialog.java @@ -93,6 +93,7 @@ class SelectBytesDialog extends ReusableDialogComponentProvider { lengthField = new IntegerTextField(10); lengthField.getComponent().getAccessibleContext().setAccessibleName("Number Input"); lengthField.setMinValue(BigInteger.ZERO); + main.add(lengthField.getComponent()); return main; }