Slow refactory/deleting [message #508547] |
Tue, 19 January 2010 07:09  |
Eclipse User |
|
|
|
Problem:
Sometimes eclipse is really slow with activating the refactory/delete (from the package explorer.) (edit: refactory of function names, delete of classes)
To be more specific there's a large time (1 to 5 minutes) before the question appears "Do you wish to delete .....". The deleting itself is rather quick.
Is it doing some legitimate work? (what and can it be shown in the progress view)
and a few quick answers to questions I expect:
- highest version of eclipse where I did not see the problem was 3.3.2.
- I gave eclipse enough memory. It's only using 500M of the 1000M available. (It was worse without this though)
- Seen with the EE and Java editions of eclipse.
- My workspace has multiple open projects (all different CVS modules) working together (well, more or less).
Thanks in advance,
Marco
[Updated on: Thu, 21 January 2010 03:17] by Moderator
|
|
|
|
|
|
|
|
|
|
|
|
Re: Slow refactory/deleting [message #1787623 is a reply to message #1787487] |
Wed, 30 May 2018 04:56  |
Eclipse User |
|
|
|
Hi,
just for the archive. I've found the issue and a possible workaround:
Windows bug (since Vista) causing the issue: https://bugs.eclipse.org/bugs/show_bug.cgi?id=302396
Workaround is to deactivate the fade in/fade out of the tree expandos:
int bits2 = (int) /* 64 */OS.SendMessage(tree.handle, OS.TVM_GETEXTENDEDSTYLE, 0, 0);
// bits2 |= OS.TVS_EX_FADEINOUTEXPANDOS;
bits2 &= ~OS.TVS_EX_FADEINOUTEXPANDOS;
OS.SendMessage(tree.handle, OS.TVM_SETEXTENDEDSTYLE, 0, bits2);
|
|
|
Powered by
FUDForum. Page generated in 0.18529 seconds