From: Charles du Jeu Date: Thu, 19 Nov 2009 15:48:47 +0000 (+0000) Subject: Fix remove() bug, really... X-Git-Tag: argeo-commons-2.1.30~1718 X-Git-Url: http://git.argeo.org/?p=lgpl%2Fargeo-commons.git;a=commitdiff_plain;h=4857f38cf08974333c9f0cb7d84f9d2bd42bae9a Fix remove() bug, really... git-svn-id: https://svn.argeo.org/commons/trunk@3112 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- diff --git a/security/runtime/org.argeo.security.ria/src/argeo-ria-lib/security/class/org/argeo/security/ria/Perspective.js b/security/runtime/org.argeo.security.ria/src/argeo-ria-lib/security/class/org/argeo/security/ria/Perspective.js index 289637628..325e9c4b3 100644 --- a/security/runtime/org.argeo.security.ria/src/argeo-ria-lib/security/class/org/argeo/security/ria/Perspective.js +++ b/security/runtime/org.argeo.security.ria/src/argeo-ria-lib/security/class/org/argeo/security/ria/Perspective.js @@ -57,8 +57,7 @@ qx.Class.define("org.argeo.security.ria.Perspective", { }, remove : function(viewsManager) { - viewsManager.getViewPaneById("applet").empty(); - viewsManager.getViewPanesContainer().remove(this.splitPane); + viewsManager.getViewPanesContainer().remove(this._firstSplit); } }