From 70c496497d6edb93cd37c65ad7cf6103c17a7f66 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Sat, 11 Nov 2000 00:24:02 +0000 Subject: [PATCH] there's an oops in ecore e_window_show... :) SVN revision: 3853 --- legacy/ecore/src/e_x.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/legacy/ecore/src/e_x.c b/legacy/ecore/src/e_x.c index dd8c7fa643..9279fafad1 100644 --- a/legacy/ecore/src/e_x.c +++ b/legacy/ecore/src/e_x.c @@ -363,7 +363,8 @@ e_window_show(Window win) if (xid) { if (xid->mapped) - xid->mapped = 1; + return; + xid->mapped = 1; XMapWindow(disp, win); } }