From b10aeb046d52ca425ca43fa99be3fd7c6a53bac3 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Fri, 7 May 2021 17:18:21 -0500 Subject: [PATCH] Changed label of direct message's text field so it will not reference any username in the hint. Closes #366 --- doc/changelog.md | 1 + src/wxUI/dialogs/message.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/changelog.md b/doc/changelog.md index 7effe95a..e4369880 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -2,6 +2,7 @@ ## changes in this version +* Changed the label in the direct message's text control so it will indicate that the user needs to write the text there, without referring to any username in particular. ([#366,](https://github.com/manuelcortez/TWBlue/issues/366)) * TWBlue will take Shift+F10 again as the contextual menu key in the list of items in a buffer. This stopped working after we have migrated to WX 4.1. ([#353,](https://github.com/manuelcortez/TWBlue/issues/353)) * TWBlue should render correctly retweets of quoted tweets. ([#365,](https://github.com/manuelcortez/TWBlue/issues/365)) * Fixed an error that was causing TWBlue to be unable to output to screen readers at times. ([#369,](https://github.com/manuelcortez/TWBlue/issues/369)) diff --git a/src/wxUI/dialogs/message.py b/src/wxUI/dialogs/message.py index 50e380d7..97f8a22a 100644 --- a/src/wxUI/dialogs/message.py +++ b/src/wxUI/dialogs/message.py @@ -221,7 +221,7 @@ class dm(textLimited): def __init__(self, title, message, users, *args, **kwargs): super(dm, self).__init__() - self.createControls(message, title, users) + self.createControls(title, message, users) # self.onTimer(wx.EVT_CHAR_HOOK) # self.SetClientSize(self.mainBox.CalcMin())