diff options
| author | Markus Keller | 2012-01-20 23:52:49 +0000 |
|---|---|---|
| committer | Matthias Sohn | 2012-01-20 23:52:49 +0000 |
| commit | 9b8031a5d3d6d3c1dda01f75fbde396d8e954a33 (patch) | |
| tree | 07b2ab15a1dde8d10bd60ad088d880ecb55a0041 | |
| parent | 4172ba9f20d918f81bd9767c306ef5d2238c1556 (diff) | |
| download | egit-9b8031a5d3d6d3c1dda01f75fbde396d8e954a33.tar.gz egit-9b8031a5d3d6d3c1dda01f75fbde396d8e954a33.tar.xz egit-9b8031a5d3d6d3c1dda01f75fbde396d8e954a33.zip | |
Removed bad ON_TOP flag from dialogs.
Bug: 358868
Change-Id: I9552caf40fd2707012e58b80fbf431ece372f40d
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
3 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/fetch/FetchResultDialog.java b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/fetch/FetchResultDialog.java index 3477952223..7f5065fdc7 100644 --- a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/fetch/FetchResultDialog.java +++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/fetch/FetchResultDialog.java @@ -49,7 +49,7 @@ public class FetchResultDialog extends TitleAreaDialog { public FetchResultDialog(final Shell parentShell, final Repository localDb, final FetchOperationResult result, final String sourceString) { super(parentShell); - setShellStyle(getShellStyle() & ~SWT.APPLICATION_MODAL | SWT.ON_TOP | SWT.RESIZE); + setShellStyle(getShellStyle() & ~SWT.APPLICATION_MODAL | SWT.RESIZE); setBlockOnOpen(false); this.localDb = localDb; this.result = result; @@ -89,7 +89,7 @@ public class FetchResultDialog extends TitleAreaDialog { public FetchResultDialog(final Shell parentShell, final Repository localDb, final FetchResult result, final String sourceString) { super(parentShell); - setShellStyle(getShellStyle() & ~SWT.APPLICATION_MODAL | SWT.ON_TOP | SWT.RESIZE); + setShellStyle(getShellStyle() & ~SWT.APPLICATION_MODAL | SWT.RESIZE); setBlockOnOpen(false); this.localDb = localDb; this.result = new FetchOperationResult(result.getURI(), result); diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/pull/MultiPullResultDialog.java b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/pull/MultiPullResultDialog.java index 55cd406241..91e2097617 100644 --- a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/pull/MultiPullResultDialog.java +++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/pull/MultiPullResultDialog.java @@ -152,7 +152,7 @@ public class MultiPullResultDialog extends Dialog { protected MultiPullResultDialog(Shell parentShell, Map<Repository, Object> results) { super(parentShell); - setShellStyle(getShellStyle() & ~SWT.APPLICATION_MODAL | SWT.ON_TOP | SWT.SHELL_TRIM); + setShellStyle(getShellStyle() & ~SWT.APPLICATION_MODAL | SWT.SHELL_TRIM); setBlockOnOpen(false); this.results.putAll(results); } diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/pull/PullResultDialog.java b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/pull/PullResultDialog.java index c7efe9bcef..2e89bc60b2 100644 --- a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/pull/PullResultDialog.java +++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/pull/PullResultDialog.java @@ -57,7 +57,7 @@ public class PullResultDialog extends Dialog { */ public PullResultDialog(Shell shell, Repository repo, PullResult result) { super(shell); - setShellStyle(getShellStyle() & ~SWT.APPLICATION_MODAL | SWT.ON_TOP | SWT.SHELL_TRIM); + setShellStyle(getShellStyle() & ~SWT.APPLICATION_MODAL | SWT.SHELL_TRIM); setBlockOnOpen(false); this.repo = repo; this.result = result; |
