Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 75812 | Differences between
and this patch

Collapse All | Expand All

(-)Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java (-1 / +2 lines)
Lines 23-28 Link Here
23
import org.eclipse.swt.internal.cocoa.*;
23
import org.eclipse.swt.internal.cocoa.*;
24
24
25
import org.eclipse.swt.*;
25
import org.eclipse.swt.*;
26
import org.eclipse.swt.browser.Browser;
26
import org.eclipse.swt.graphics.*;
27
import org.eclipse.swt.graphics.*;
27
28
28
/**
29
/**
Lines 3341-3347 Link Here
3341
		int modifiers = OS.GetCurrentEventKeyModifiers ();
3342
		int modifiers = OS.GetCurrentEventKeyModifiers ();
3342
		boolean [] cursorWasSet = new boolean [1];
3343
		boolean [] cursorWasSet = new boolean [1];
3343
		OS.HandleControlSetCursor (theControl [0], where, (short) modifiers, cursorWasSet);
3344
		OS.HandleControlSetCursor (theControl [0], where, (short) modifiers, cursorWasSet);
3344
		if (!cursorWasSet [0]) OS.SetThemeCursor (OS.kThemeArrowCursor);
3345
		if (!cursorWasSet [0] && !(control instanceof Browser)) OS.SetThemeCursor (OS.kThemeArrowCursor);
3345
	}
3346
	}
3346
	return eventSent;
3347
	return eventSent;
3347
}
3348
}

Return to bug 75812