diff --git a/bndtools.core/src/bndtools/views/repository/RepositoriesView.java b/bndtools.core/src/bndtools/views/repository/RepositoriesView.java index 96ac165c2a..7582809db9 100644 --- a/bndtools.core/src/bndtools/views/repository/RepositoriesView.java +++ b/bndtools.core/src/bndtools/views/repository/RepositoriesView.java @@ -1161,6 +1161,13 @@ private HierarchicalLabel createContextMenueCopyInfoRepoBundle(Actionabl info.append(tooltipContent); clipboard.copy(info.toString()); } + else { + // bundle does not seem to have a tooltip + // let's just add general bundle info + info.append(rb.toString()); + clipboard.copy(info.toString()); + } + } catch (Exception e) { throw Exceptions.duck(e); }