Skip to content

Commit

Permalink
added description of the event entry to the tooltip. close #1780
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Oct 29, 2023
1 parent bdc8989 commit df635a0
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -856,6 +856,8 @@ public void setEntry(ReviewDueEntry entry) {
}
String dueCaption = java.util.ResourceBundle.getBundle("com/jdimension/jlawyer/client/desktop/ReviewDueEntryPanel").getString("caption.due");
tooltip.append("<b>").append(dueCaption).append(": ").append(dueDate).append("</b><br/>").append(StringUtils.nonEmpty(e.getReviewReason()));
if(!StringUtils.isEmpty(e.getReview().getDescription()))
tooltip.append(HTML_BR).append(e.getReview().getDescription());
String caseCaption = java.util.ResourceBundle.getBundle("com/jdimension/jlawyer/client/desktop/ReviewDueEntryPanel").getString("caption.case");
tooltip.append(HTML_BR).append(caseCaption).append(": ").append(caseNumber).append(" ").append(e.getArchiveFileName());
String responsibleCaption = java.util.ResourceBundle.getBundle("com/jdimension/jlawyer/client/desktop/ReviewDueEntryPanel").getString("caption.responsible");
Expand Down

0 comments on commit df635a0

Please sign in to comment.