diff --git a/doc/changelog.md b/doc/changelog.md index 8a1049af..94c38523 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -2,6 +2,7 @@ ## changes in this version +* Fixed an issue that was making the list manager keystroke unable to be shown in the keystroke editor. Now the keystroke is listed properly. ([#260](https://github.com/manuelcortez/TWBlue/issues/260)) * The volume slider, located in the account settings of TWBlue, now should decrease and increase value properly when up and down arrows are pressed. Before it was doing it in inverted order. ([#261](https://github.com/manuelcortez/TWBlue/issues/261)) * autoreading has been redesigned to work in a similar way for almost all buffers. Needs testing. ([#221](https://github.com/manuelcortez/TWBlue/issues/221)) * When displaying tweets or direct messages, a new field has been added to show the date when the item has been posted to Twitter. diff --git a/src/keystrokeEditor/constants.py b/src/keystrokeEditor/constants.py index 0751d9e5..1512cf10 100644 --- a/src/keystrokeEditor/constants.py +++ b/src/keystrokeEditor/constants.py @@ -50,6 +50,7 @@ actions = { "check_for_updates": _(u"Check and download updates"), "lists_manager": _(u"Opens the list manager, which allows you to create, edit, delete and open lists in buffers."), "configuration": _(u"Opens the global settings dialogue"), +"list_manager": _(u"Opens the list manager"), "accountConfiguration": _(u"Opens the account settings dialogue"), "audio": _(u"Try to play an audio file"), "update_buffer": _(u"Updates the buffer and retrieves possible lost items there."),