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 195514 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/mylyn/tasks/ui/editors/AbstractRepositoryTaskEditor.java (-3 / +3 lines)
Lines 1280-1290 Link Here
1280
				attribute = taskData.getAttribute(RepositoryTaskAttribute.SUMMARY);
1280
				attribute = taskData.getAttribute(RepositoryTaskAttribute.SUMMARY);
1281
			}
1281
			}
1282
1282
1283
			summaryTextViewer = addTextEditor(repository, summaryComposite, attribute.getValue(), true, SWT.FLAT);
1283
			summaryTextViewer = addTextEditor(repository, summaryComposite, attribute.getValue(), true, SWT.FLAT | SWT.SINGLE);
1284
			summaryTextViewer.setEditable(true);
1284
			summaryTextViewer.setEditable(true);
1285
			summaryText = summaryTextViewer.getTextWidget();
1285
			summaryText = summaryTextViewer.getTextWidget();
1286
			GridDataFactory.fillDefaults().grab(true, false).hint(DESCRIPTION_WIDTH, SUMMARY_HEIGHT).applyTo(
1286
			summaryText.setIndent(2);
1287
					summaryTextViewer.getControl());
1287
			GridDataFactory.fillDefaults().grab(true, false).applyTo(summaryTextViewer.getControl());
1288
1288
1289
			if (hasChanged(attribute)) {
1289
			if (hasChanged(attribute)) {
1290
				summaryTextViewer.getTextWidget().setBackground(colorIncoming);
1290
				summaryTextViewer.getTextWidget().setBackground(colorIncoming);
(-)src/org/eclipse/mylyn/tasks/ui/editors/TaskFormPage.java (+1 lines)
Lines 335-340 Link Here
335
335
336
		support.install(EditorsUI.getPreferenceStore());
336
		support.install(EditorsUI.getPreferenceStore());
337
337
338
		commentViewer.getTextWidget().setIndent(2);
338
		commentViewer.getTextWidget().addDisposeListener(new DisposeListener() {
339
		commentViewer.getTextWidget().addDisposeListener(new DisposeListener() {
339
			public void widgetDisposed(DisposeEvent e) {
340
			public void widgetDisposed(DisposeEvent e) {
340
				support.uninstall();
341
				support.uninstall();

Return to bug 195514