mbien commented on code in PR #7128:
URL: https://github.com/apache/netbeans/pull/7128#discussion_r1536598970


##########
ide/versioning.util/src/org/netbeans/modules/versioning/history/SummaryCellRenderer.java:
##########
@@ -714,16 +735,20 @@ private String prepareText (String text) {
     private class EventRenderer extends JPanel implements ListCellRenderer {
         
         private boolean lastSelection = false;
+        private String lastSearch = null;
+        private int lastShowingFiles = -1;
         private final JLabel pathLabel;
         private final JLabel actionLabel;
         private final JButton actionButton;
         private String id;
         private final String PATH_COLOR = 
getColorString(lessInteresting(UIManager.getColor("List.foreground"), 
UIManager.getColor("List.background"))); //NOI18N
+        private final String SEARCH_COLOR_BG = getColorString((Color) 
Objects.requireNonNullElse(searchHiliteAttrs.getAttribute(StyleConstants.Background),
 Color.BLUE)); //NOI18N
+        private final String SEARCH_COLOR_FG = getColorString((Color) 
Objects.requireNonNullElse(searchHiliteAttrs.getAttribute(StyleConstants.Foreground),
 UIManager.getColor("List.foreground"))); //NOI18N
 
         public EventRenderer () {
             pathLabel = new JLabel();
             actionLabel = new JLabel();
-            actionButton = new LinkButton("..."); //NOI18N
+            actionButton = new LinkButton("=>"); //NOI18N

Review Comment:
   those are essentially stripped down buttons already. Rendering an icon would 
probably be possible. I am just not someone who makes icons + I am also not so 
sure if it would actually look better / be worth the effort, since the UI is 
consistently using hyperlinked text for navigation in that window.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to