From 3b944edb02a838e92f5f849b1266f157ccfb7040 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Mon, 08 Jul 2013 04:53:06 -0400 Subject: [PATCH] Fix bug where signature wasn't changed on identity selection when editing a draft (#1489229) --- program/js/app.js | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/program/js/app.js b/program/js/app.js index 19ece01..04fb9cd 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -3065,7 +3065,7 @@ this.set_caret_pos(input_message, this.env.top_posting ? 0 : $(input_message).val().length); // add signature according to selected identity // if we have HTML editor, signature is added in callback - if (input_from.prop('type') == 'select-one' && !this.env.opened_extwin) { + if (input_from.prop('type') == 'select-one') { this.change_identity(input_from[0]); } } @@ -3402,6 +3402,15 @@ if (!show_sig) show_sig = this.env.show_sig; + // first function execution + if (!this.env.identities_initialized) { + this.env.identities_initialized = true; + if (this.env.show_sig_later) + this.env.show_sig = true; + if (this.env.opened_extwin) + return; + } + var i, rx, cursor_pos, p = -1, id = obj.options[obj.selectedIndex].value, input_message = $("[name='_message']"), -- Gitblit v1.9.1