summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogdan Gheorghe <gheorghe>2008-02-06 23:46:20 +0000
committerBogdan Gheorghe <gheorghe>2008-02-06 23:46:20 +0000
commit9cc7bf316001be3f2cae5d26db4907e75265c6c7 (patch)
tree2425227629b3178dbe6be718d7552bdf412b7271
parent6c48d4437523098174e34b0ca3cce7089fa85560 (diff)
downloadeclipse.platform.swt-9cc7bf316001be3f2cae5d26db4907e75265c6c7.tar.gz
eclipse.platform.swt-9cc7bf316001be3f2cae5d26db4907e75265c6c7.tar.xz
eclipse.platform.swt-9cc7bf316001be3f2cae5d26db4907e75265c6c7.zip
Revert code from 184932
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
index 3693225509..5bfb71334f 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
@@ -1021,13 +1021,6 @@ int /*long*/ gtk_key_press_event (int /*long*/ widget, int /*long*/ event) {
int /*long*/ gtk_map_event (int /*long*/ widget, int /*long*/ event) {
minimized = false;
- /*
- * Feature in GTK. When an ancestor of an override redirect shell is
- * minimized or restored, the override redirect shell is not minimized
- * or restored. The fix is to explicitly hide and show all override
- * redirect shells.
- */
- updateShells ();
return 0;
}
@@ -1072,13 +1065,6 @@ int /*long*/ gtk_realize (int /*long*/ widget) {
int /*long*/ gtk_unmap_event (int /*long*/ widget, int /*long*/ event) {
minimized = true;
- /*
- * Feature in GTK. When an ancestor of an override redirect shell is
- * minimized or restored, the override redirect shell is not minimized
- * or restored. The fix is to explicitly hide and show all override
- * redirect shells.
- */
- updateShells ();
return 0;
}