From 6e32cd319de62dca83b84665c0ec2b5391f1e191 Mon Sep 17 00:00:00 2001 From: mdb Date: Mon, 6 Aug 2001 23:26:42 +0000 Subject: [PATCH] Add the entryid as a tool tip so that a user can look up entry ids for use in external programs (like shoutdiscs.pl). git-svn-id: https://samskivert.googlecode.com/svn/trunk@217 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- projects/robodj/src/java/robodj/chooser/EntryList.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/robodj/src/java/robodj/chooser/EntryList.java b/projects/robodj/src/java/robodj/chooser/EntryList.java index 5e11e2c4..ca8437fa 100644 --- a/projects/robodj/src/java/robodj/chooser/EntryList.java +++ b/projects/robodj/src/java/robodj/chooser/EntryList.java @@ -1,5 +1,5 @@ // -// $Id: EntryList.java,v 1.5 2001/07/26 01:18:21 mdb Exp $ +// $Id: EntryList.java,v 1.6 2001/08/06 23:26:42 mdb Exp $ package robodj.chooser; @@ -176,6 +176,7 @@ public class EntryList button.setActionCommand("browse"); button.addActionListener(this); button.putClientProperty("entry", entries[i]); + button.setToolTipText("Entry ID: " + entries[i].entryid); hpanel.add(button); button = new JButton("Play");