Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositoryQueryPage2.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositoryQueryPage2.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositoryQueryPage2.java
index 7efb6a3e2..6e5eb8483 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositoryQueryPage2.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositoryQueryPage2.java
@@ -447,4 +447,15 @@ public abstract class AbstractRepositoryQueryPage2 extends AbstractRepositoryQue
protected abstract boolean restoreState(@NonNull IRepositoryQuery query);
+ /**
+ * Reflows the page and resizes the shell as necessary. Clients should invoke this if the content of the page is
+ * changed dynamically.
+ *
+ * @see SectionComposite#resizeAndReflow()
+ * @since 3.10
+ */
+ public void reflow() {
+ innerComposite.resizeAndReflow();
+ }
+
}

Back to the top