Skip to content

Commit 227bae4

Browse files
author
Joe Wegner
committed
Remove the board name from the cell, only in the title.
1 parent b9265a4 commit 227bae4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCellJPanel.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public ContributedLibraryTableCellJPanel(JTable parentTable, Object value,
156156
String desc = "<html><body>";
157157

158158
// Library name...
159-
desc += format("<b>{0}</b>", name);
159+
// desc += format("<b>{0}</b>", name);
160160
if (mayInstalled.isPresent() && mayInstalled.get().isIDEBuiltIn()) {
161161
desc += " Built-In ";
162162
}

app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCellJPanel.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ void update(JTable parentTable, Object value, boolean isSelected,
215215
removeButtonPlaceholder.setVisible(!removable);
216216

217217
String desc = "<html><body>";
218-
desc += "<b>" + selected.getName() + "</b>";
218+
// desc += "<b>" + selected.getName() + "</b>";
219219
if (installed != null && installed.isBuiltIn()) {
220220
desc += " Built-In ";
221221
}

0 commit comments

Comments
 (0)