[M-git] Mahogany sources repository. branch master updated. v0.67-814-ge730c382
Vadim Zeitlin via Mahogany-cvsupdates <[email protected]> Wed, 24 Feb 2021 12:41:19 +0000
| Newsgroups | gmane.mail.mahogany.cvs |
|---|---|
| Message-ID | <[email protected]> |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Mahogany sources repository.".
The branch, master has been updated
via e730c3820de494f931fe8b0e1fa4b7aa874a2331 (commit)
from 566f4ab86549de6a7ed6e625e0821f6e3c5e88a2 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit e730c3820de494f931fe8b0e1fa4b7aa874a2331
Author: Vadim Zeitlin <[email protected]>
Date: Wed Feb 24 13:39:23 2021 +0100
Use a wxPanel, not just a wxWindow, as viewer window parent
This fixes using TAB for navigating out of the viewer since the changes
in 247bb98d07 (Generate Enter/Tab events even in readonly MSW
wxTextCtrl, 2021-01-29) in wxWidgets.
diff --git a/src/gui/wxMessageView.cpp b/src/gui/wxMessageView.cpp
index d633f167..aa8472e1 100644
--- a/src/gui/wxMessageView.cpp
+++ b/src/gui/wxMessageView.cpp
@@ -195,7 +195,7 @@ wxMessageView::wxMessageView(wxWindow *parent,
// OnViewerChange() for the initial dummy viewer
m_FolderView = NULL;
- m_viewerParent = new wxWindow(parent, wxID_ANY);
+ m_viewerParent = new wxPanel(parent);
m_infobar = new wxInfoBar(m_viewerParent);
// Don't delay showing the error messages with unnecessary effects.
-----------------------------------------------------------------------
Summary of changes:
src/gui/wxMessageView.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
Mahogany sources repository.