mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-22 20:22:44 +00:00
GP-975: Fixed embarassing table column mistake
This commit is contained in:
parent
6151af6cdf
commit
447ea93b35
@ -253,7 +253,8 @@ public class DebuggerConsoleProvider extends ComponentProviderAdapter
|
||||
protected int computePreferredHeight(int r, int c) {
|
||||
TableCellRenderer renderer = getCellRenderer(r, c);
|
||||
if (renderer instanceof ConsoleActionsCellRenderer) {
|
||||
ActionList actions = (ActionList) getModel().getValueAt(r, c);
|
||||
ActionList actions =
|
||||
(ActionList) getModel().getValueAt(r, convertColumnIndexToModel(c));
|
||||
if (!actions.isEmpty()) {
|
||||
return ACTION_BUTTON_SIZE;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user