diff --git a/src/common/docview.cpp b/src/common/docview.cpp index d115d72349..37cf7cca0b 100644 --- a/src/common/docview.cpp +++ b/src/common/docview.cpp @@ -506,7 +506,8 @@ void wxDocument::UpdateAllViews(wxView *sender, wxObject *hint) while (node) { wxView *view = (wxView *)node->Data(); - view->OnUpdate(sender, hint); + if (view != sender) + view->OnUpdate(sender, hint); node = node->Next(); } }