1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-08 00:35:49 +02:00

Avoid extra hover delay, related to bug 200418

This commit is contained in:
Anton Leherbauer 2010-01-12 14:33:55 +00:00
parent f9a0d5571e
commit fa2d625b25

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2000, 2009 QNX Software Systems and others. * Copyright (c) 2000, 2010 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -225,7 +225,7 @@ public abstract class AbstractDebugTextHover implements ICEditorTextHover, IText
} }
} }
}; };
job.setPriority(Job.DECORATE); job.setPriority(Job.SHORT);
job.setSystem(true); job.setSystem(true);
job.schedule(); job.schedule();
try { try {