View | Details | Raw Unified | Return to bug 307559
Collapse All | Expand All

(-)a/org.eclipse.draw2d/src/org/eclipse/draw2d/text/BlockFlow.java (-1 / +2 lines)
Lines 201-207 Link Here
201
		if (selectionStart != -1) {
201
		if (selectionStart != -1) {
202
			graphics.restoreState();
202
			graphics.restoreState();
203
			graphics.setXORMode(true);
203
			graphics.setXORMode(true);
204
			graphics.setBackgroundColor(ColorConstants.white);
204
			graphics.setBackgroundColor(ColorConstants.blue);
205
			graphics.setAlpha(60);
205
			graphics.fillRectangle(getBounds());
206
			graphics.fillRectangle(getBounds());
206
		}
207
		}
207
	}
208
	}
(-)a/org.eclipse.draw2d/src/org/eclipse/draw2d/text/TextFlow.java (-1 / +2 lines)
Lines 597-603 Link Here
597
		if (selectionStart == -1)
597
		if (selectionStart == -1)
598
			return;
598
			return;
599
		graphics.setXORMode(true);
599
		graphics.setXORMode(true);
600
		graphics.setBackgroundColor(ColorConstants.white);
600
		graphics.setBackgroundColor(ColorConstants.blue);
601
		graphics.setAlpha(60);
601
602
602
		TextFragmentBox frag;
603
		TextFragmentBox frag;
603
		for (int i = 0; i < fragments.size(); i++) {
604
		for (int i = 0; i < fragments.size(); i++) {

Return to bug 307559