mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
#18832818 찾기/바꾸기 창이 나타나지 않는 오류 수정 (Thanks to 파이델)
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7411 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
9f10f636a1
commit
ec733ca7d1
1 changed files with 2 additions and 2 deletions
|
|
@ -2404,13 +2404,13 @@ xe.DialogLayerManager = $.Class({
|
|||
bModal = $.$(bModal) || false;
|
||||
if(!oLayer) return;
|
||||
|
||||
if($.inArray(oLayer, this.aOpenedLayers)) return;
|
||||
if($.inArray(oLayer, this.aOpenedLayers) != -1) return;
|
||||
|
||||
this.oApp.exec("POSITION_DIALOG_LAYER", [oLayer]);
|
||||
|
||||
this.aOpenedLayers[this.aOpenedLayers.length] = oLayer;
|
||||
|
||||
if(!$.inArray(oLayer, this.aMadeDraggable)){
|
||||
if($.inArray(oLayer, this.aMadeDraggable) == -1){
|
||||
new xe.DraggableLayer(oLayer, {bModal: bModal, iMinY: 0});
|
||||
this.aMadeDraggable[this.aMadeDraggable.length] = oLayer;
|
||||
}else{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue