From: Vadim Zeitlin Date: Mon, 7 Sep 1998 08:54:52 +0000 (+0000) Subject: the notebook now has wxTAB_TRAVERSAL style X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fd2daa68f4e2d0f66f466be4dcee7bad9ed4be1a the notebook now has wxTAB_TRAVERSAL style git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@695 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/notebook.cpp b/src/msw/notebook.cpp index 538c053be0..80dad3b713 100644 --- a/src/msw/notebook.cpp +++ b/src/msw/notebook.cpp @@ -134,7 +134,7 @@ bool wxNotebook::Create(wxWindow *parent, m_defaultBackgroundColour = wxColour(GetSysColor(COLOR_BTNFACE)); // style - m_windowStyle = style; + m_windowStyle = style | wxTAB_TRAVERSAL; long tabStyle = WS_CHILD | WS_VISIBLE | WS_TABSTOP | TCS_TABS; if ( m_windowStyle & wxTC_MULTILINE )