diff --git a/modules/editor/skins/xpresseditor/editor.html b/modules/editor/skins/xpresseditor/editor.html index 3645fe24c..c4c927f52 100644 --- a/modules/editor/skins/xpresseditor/editor.html +++ b/modules/editor/skins/xpresseditor/editor.html @@ -421,7 +421,6 @@ - diff --git a/modules/editor/skins/xpresseditor/img/btn_confirm.gif b/modules/editor/skins/xpresseditor/img/btn_confirm.gif deleted file mode 100644 index fd78c5fdd..000000000 Binary files a/modules/editor/skins/xpresseditor/img/btn_confirm.gif and /dev/null differ diff --git a/modules/editor/skins/xpresseditor/img/btn_layer_find_next.gif b/modules/editor/skins/xpresseditor/img/btn_layer_find_next.gif index 986902051..35487470b 100644 Binary files a/modules/editor/skins/xpresseditor/img/btn_layer_find_next.gif and b/modules/editor/skins/xpresseditor/img/btn_layer_find_next.gif differ diff --git a/modules/editor/skins/xpresseditor/img/btn_layer_find_next_strong.gif b/modules/editor/skins/xpresseditor/img/btn_layer_find_next_strong.gif index f1f183ec1..99611c267 100644 Binary files a/modules/editor/skins/xpresseditor/img/btn_layer_find_next_strong.gif and b/modules/editor/skins/xpresseditor/img/btn_layer_find_next_strong.gif differ diff --git a/modules/editor/skins/xpresseditor/img/btn_layer_replace.gif b/modules/editor/skins/xpresseditor/img/btn_layer_replace.gif index 10051f3df..37b885ceb 100644 Binary files a/modules/editor/skins/xpresseditor/img/btn_layer_replace.gif and b/modules/editor/skins/xpresseditor/img/btn_layer_replace.gif differ diff --git a/modules/editor/skins/xpresseditor/img/btn_layer_replace_all.gif b/modules/editor/skins/xpresseditor/img/btn_layer_replace_all.gif index 7264bb1ad..2b8390a8a 100644 Binary files a/modules/editor/skins/xpresseditor/img/btn_layer_replace_all.gif and b/modules/editor/skins/xpresseditor/img/btn_layer_replace_all.gif differ diff --git a/modules/editor/skins/xpresseditor/js/Xpress_Editor.js b/modules/editor/skins/xpresseditor/js/Xpress_Editor.js index 142b5de16..f64045b00 100644 --- a/modules/editor/skins/xpresseditor/js/Xpress_Editor.js +++ b/modules/editor/skins/xpresseditor/js/Xpress_Editor.js @@ -2406,7 +2406,7 @@ xe.DialogLayerManager = jQuery.Class({ bModal = jQuery.$(bModal) || false; if(!oLayer) return; - if(jQuery.inArray(oLayer, this.aOpenedLayers)) return; + //if(jQuery.inArray(oLayer, this.aOpenedLayers)) return; this.oApp.exec("POSITION_DIALOG_LAYER", [oLayer]); @@ -4819,13 +4819,13 @@ xe.XE_FindReplacePlugin = jQuery.Class({ this.oReplaceInput_Replacement = oTmp[1]; this.oFindNextButton = jQuery("BUTTON.find_next", this.oUILayer).get(0); - this.oCancelButton = jQuery("BUTTON.cancel", this.oUILayer).get(0); + //this.oCancelButton = jQuery("BUTTON.cancel", this.oUILayer).get(0); this.oReplaceButton = jQuery("BUTTON.replace", this.oUILayer).get(0); this.oReplaceAllButton = jQuery("BUTTON.replace_all", this.oUILayer).get(0); this.aCloseButtons = jQuery("BUTTON.close", this.oUILayer).get(); - this.aCloseButtons[this.aCloseButtons.length] = this.oCancelButton; + //this.aCloseButtons[this.aCloseButtons.length] = this.oCancelButton; }, $ON_MSG_APP_READY : function(){