15659f5
From: dane <dane>
15659f5
Date: Sat, 9 Nov 2013 17:20:49 +0000
15659f5
Subject: [PATCH] 	* fvwm/events.c (HandlePropertyNotify): Disable prior
15659f5
 fix suspected of causing 	problems.
15659f5
15659f5
15659f5
diff --git a/ChangeLog b/ChangeLog
15659f5
index 701477c..31fbc57 100644
15659f5
--- a/ChangeLog
15659f5
+++ b/ChangeLog
15659f5
@@ -1,3 +1,8 @@
15659f5
+2013-11-09  Dan Espen  <despen(at)1verizon.net>
15659f5
+
15659f5
+	* fvwm/events.c (HandlePropertyNotify): Disable prior fix suspected of causing
15659f5
+	problems.
15659f5
+
15659f5
 2012-04-20  Thomas Adam  <thomas@fvwm.org>
15659f5
 	* configure.ac:
15659f5
 	* docs/ANNOUNCE:
15659f5
diff --git a/fvwm/events.c b/fvwm/events.c
15659f5
index e6a1a74..a58feb1 100644
15659f5
--- a/fvwm/events.c
15659f5
+++ b/fvwm/events.c
15659f5
@@ -3383,8 +3383,15 @@ void HandlePropertyNotify(const evh_args_t *ea)
15659f5
 		 * if the icon name is NoName, set the name of the icon to be
15659f5
 		 * the same as the window
15659f5
 		 */
15659f5
-		if (!WAS_ICON_NAME_PROVIDED(fw) || (fw->icon_name.name &&
15659f5
-			(fw->icon_name.name != fw->name.name)))
15659f5
+		if (!WAS_ICON_NAME_PROVIDED(fw)
15659f5
+#if 0
15659f5
+		    /* dje, reported as causing various dumps.
15659f5
+		       I tried to debug, but so far haven't even figured out
15659f5
+		       how to exercise this logic. Mov 9, 2013. */
15659f5
+		    || (fw->icon_name.name &&
15659f5
+			(fw->icon_name.name != fw->name.name))
15659f5
+#endif
15659f5
+)
15659f5
 		{
15659f5
 			fw->icon_name = fw->name;
15659f5
 			setup_visible_name(fw, True);