From e111012a42a1bcb74c1ac07ff565ff4d7d1f9edf Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 5 Apr 2005 21:46:37 +0000 Subject: [PATCH] use wxTE_RICH2 for the text control, it looks better under Windows git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33357 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/tipdlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generic/tipdlg.cpp b/src/generic/tipdlg.cpp index 272db7296d..e4a6660bc0 100644 --- a/src/generic/tipdlg.cpp +++ b/src/generic/tipdlg.cpp @@ -258,7 +258,7 @@ wxTipDialog::wxTipDialog(wxWindow *parent, wxTE_MULTILINE | wxTE_READONLY | wxTE_NO_VSCROLL | - wxTE_RICH | // a hack to get rid of vert scrollbar + wxTE_RICH2 | // a hack to get rid of vert scrollbar wxDEFAULT_CONTROL_BORDER ); #if defined(__WXMSW__)