View | Details | Raw Unified | Return to bug 349510 | Differences between
and this patch

Collapse All | Expand All

(-)a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskEditorPlanningPart.java (+1 lines)
Lines 54-59 Link Here
54
				NotesAction notesAction = new NotesAction();
54
				NotesAction notesAction = new NotesAction();
55
				notesAction.setEnabled(needsNotes());
55
				notesAction.setEnabled(needsNotes());
56
				toolBarManager.add(notesAction);
56
				toolBarManager.add(notesAction);
57
				toolBarManager.add(getMaximizePartAction());
57
			}
58
			}
58
		};
59
		};
59
	}
60
	}
(-)a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AbstractTaskEditorPart.java (+3 lines)
Lines 238-243 Link Here
238
			}
238
			}
239
			gd.heightHint = heightHint;
239
			gd.heightHint = heightHint;
240
			gd.minimumHeight = heightHint;
240
			gd.minimumHeight = heightHint;
241
			if (gd.widthHint == -1) {
242
				gd.widthHint = 300;// needs to be set or else heightHint is ignored
243
			}
241
244
242
			getTaskEditorPage().reflow();
245
			getTaskEditorPage().reflow();
243
			CommonFormUtil.ensureVisible(control);
246
			CommonFormUtil.ensureVisible(control);

Return to bug 349510