Hy,

I got an intersting problem which I stumbled upon. When I double-click a JLabel in a JSplitPane I want to add another jbutton in a JPanel, its a shorter way to make a dragg and drop. The problem is that the button doesn't appears only if i'll position the mouse on the area the button should appear. Why does it happens this way? Anyone got a clue? Are there some thread related issues involved? Sorry, I forgot to mention that the jlabel which I want to double-click it's in another Jpanel from which I want to dispaly the jbutton, perhaps is relevant. Thanks in advance

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

When you add (remove) a component to a visible GUI then you should do:

panel.add( component );
panel.revalidate();
panel.repaint();

If you need more help post your SSCCE showing the problem.

link|improve this answer
thank you ...I reminded myself that there exists repaint just a few minutes ago...silly me – mistique Apr 18 '10 at 23:09
Well then mark the question as answered. – camickr Apr 18 '10 at 23:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.