Skip to content

Commit

Permalink
fix(gui): correct html disabling in search results
Browse files Browse the repository at this point in the history
  • Loading branch information
skylot committed Oct 27, 2022
1 parent 1dd0c90 commit 4db50fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -454,10 +454,10 @@ private void updateSelection(JTable table, Component comp, int column, boolean i

private Component makeCell(JNode node, int column) {
if (column == 0) {
label.disableHtml(node.disableHtml());
label.setText(node.makeLongStringHtml());
label.setToolTipText(node.getTooltip());
label.setIcon(node.getIcon());
label.disableHtml(node.disableHtml());
return label;
}
if (!node.hasDescString()) {
Expand Down

0 comments on commit 4db50fb

Please sign in to comment.