Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Williams2015-09-22 20:14:53 +0000
committerEric Williams2015-10-08 12:48:11 +0000
commit367f50ab26852e42962ac4afc685e3bed7ab3c28 (patch)
treed750bbf9ed82e0a9739623213aac7c8547f96863
parent457b0c7c59ec26790cde73e4f05a53ccacc8fdf7 (diff)
downloadorg.eclipse.mylyn.tasks-367f50ab26852e42962ac4afc685e3bed7ab3c28.tar.gz
org.eclipse.mylyn.tasks-367f50ab26852e42962ac4afc685e3bed7ab3c28.tar.xz
org.eclipse.mylyn.tasks-367f50ab26852e42962ac4afc685e3bed7ab3c28.zip
Bug 472409 - [gtk3] Properties dialog for tasks repository is empty
after opening A call to layout() of the parent shell after adding the settings controls fixes the issue where the repository settings page is blank on initial opening on Gtk3. Change-Id: I32765447ab6dd10dcd4b76ae4262c98c94a23d25 Signed-off-by: Eric Williams <ericwill@redhat.com>
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositorySettingsPage.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositorySettingsPage.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositorySettingsPage.java
index 65b4be644..4a7836934 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositorySettingsPage.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositorySettingsPage.java
@@ -358,6 +358,7 @@ public abstract class AbstractRepositorySettingsPage extends AbstractTaskReposit
}
Point p = innerComposite.getContent().computeSize(SWT.DEFAULT, SWT.DEFAULT, true);
innerComposite.setMinSize(p);
+ innerComposite.getShell().layout();
if (needsRepositoryCredentials()) {
swapUserNameWithAnonymousInTabList();
}

Back to the top