diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-07-09 09:38:12 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-07-09 09:38:12 +0200 |
commit | d3d1e38d7266106baf2bf2256a568691f3e55220 (patch) | |
tree | 676a8191ddafc9bd9304f81b9c027dd6a26764db /program/js | |
parent | c795d528f9ec913d8a5bd304d2a1b4ebef78b606 (diff) |
Fix identity selection when opening extwindow from compose window
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/editor.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/editor.js b/program/js/editor.js index 240ec882c..e403d1f63 100644 --- a/program/js/editor.js +++ b/program/js/editor.js @@ -80,7 +80,7 @@ function rcmail_editor_callback() if (rcmail.env.default_font) $(tinyMCE.get(rcmail.env.composebody).getBody()).css('font-family', rcmail.env.default_font); - if (elem && elem.type == 'select-one' && !rcmail.env.opened_extwin) { + if (elem && elem.type == 'select-one') { rcmail.change_identity(elem); // Focus previously focused element if (fe && fe.id != rcmail.env.composebody) { |