Return-Path: X-Original-To: apmail-flex-issues-archive@minotaur.apache.org Delivered-To: apmail-flex-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id ABFD510012 for ; Mon, 2 Mar 2015 05:34:04 +0000 (UTC) Received: (qmail 5552 invoked by uid 500); 2 Mar 2015 05:34:04 -0000 Delivered-To: apmail-flex-issues-archive@flex.apache.org Received: (qmail 5520 invoked by uid 500); 2 Mar 2015 05:34:04 -0000 Mailing-List: contact issues-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list issues@flex.apache.org Received: (qmail 5510 invoked by uid 99); 2 Mar 2015 05:34:04 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Mar 2015 05:34:04 +0000 Date: Mon, 2 Mar 2015 05:34:04 +0000 (UTC) From: "Vitaliy Parfenov (JIRA)" To: issues@flex.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (FLEX-34774) Blur effect stay away if first modal Popup closes before other modal Popups MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Vitaliy Parfenov created FLEX-34774: --------------------------------------- Summary: Blur effect stay away if first modal Popup closes before other modal Popups Key: FLEX-34774 URL: https://issues.apache.org/jira/browse/FLEX-34774 Project: Apache Flex Issue Type: Bug Components: PopUp Manager Affects Versions: Apache Flex 4.14.0 Reporter: Vitaliy Parfenov Priority: Critical The fix of an issue https://issues.apache.org/jira/browse/FLEX-34454 makes this bug: 1. We're open modal popup (Popup#1) -> Blur visible 2. At the end of it's work, We're open another modal popup (Popup#2). -> Blur visible 3. Closing Popup#1 (PopUpManagerImpl:hideModalWindow has numModalWindows = 2 and (blurOwners[sm] != null && blurOwners[sm] == o.owner) = true) (Blur visible) 4. Closing Popup#2 (PopUpManagerImpl:hideModalWindow has numModalWindows = 1 and (blurOwners[sm] != null && blurOwners[sm] == o.owner) = false) (Blur stay visible) At the end we have a visible Blur effect while there are no any opened modal popups -- This message was sent by Atlassian JIRA (v6.3.4#6332)