clamp
clamp

Reputation: 34026

JList select items with all mouse buttons

how can i make a swing JList to have its items selected with any mousebutton not just the left one?

thanks!

Upvotes: 1

Views: 1096

Answers (1)

clamp
clamp

Reputation: 34026

oh just found the function

            int s = list.locationToIndex(e.getPoint());
            list.setSelectedIndex(s);

when you do this in a mouselistener it does the job.

Upvotes: 1

Related Questions