diff --git a/CHANGELOG b/CHANGELOG index 17cb00a2c..90f2bfd87 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,6 +7,7 @@ CHANGELOG Roundcube Webmail - Change folders sorting so shared/other users namespaces are listed last (#5012) - Templates: Add support for nested if conditions (#6818) - Templates: Make [space][slash] ending of condition objects optional (#6954) +- Enigma: Fix so key list selection is reset when opening key creation form (#7154) - Password: Make chpass-wrapper.py Python 3 compatible (#7135) - Elastic: Fix bug where it was possible to switch editor mode when 'htmleditor' was in 'dont_override' (#7143) - Fix so messages in threads with no root aren't displayed separately (#4999) diff --git a/plugins/enigma/enigma.js b/plugins/enigma/enigma.js index 0f11af7b3..b55756db7 100644 --- a/plugins/enigma/enigma.js +++ b/plugins/enigma/enigma.js @@ -146,6 +146,7 @@ rcube_webmail.prototype.enigma_import_success = function() // Display key(s) generation form rcube_webmail.prototype.enigma_key_create = function() { + this.keys_list.clear_selection(); this.enigma_loadframe('&_action=plugin.enigmakeys&_a=create&_nav=hide'); };