We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a9b9c2 commit 29aa782Copy full SHA for 29aa782
java/org.eclipse.set.browser/src/org/eclipse/set/browser/cef/MessageLoop.java
@@ -22,7 +22,7 @@
22
* @author Stuecker
23
*/
24
public class MessageLoop {
25
- private static final int LOOP = 75;
+ private static final int LOOP = 5;
26
27
private boolean loopDisable;
28
@@ -119,7 +119,7 @@ public void start() {
119
loopWork = () -> {
120
if (!loopShutdown && !Display.getDefault().isDisposed()) {
121
loop_work();
122
- Display.getDefault().timerExec(LOOP * 2, loopWork);
+ Display.getDefault().timerExec(LOOP, loopWork);
123
}
124
};
125
Display.getDefault().timerExec(LOOP, loopWork);
0 commit comments