From: Vadim Zeitlin <vadim@wxwidgets.org>
Date: Tue, 5 Apr 2005 21:46:37 +0000 (+0000)
Subject: use wxTE_RICH2 for the text control, it looks better under Windows
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e111012a42a1bcb74c1ac07ff565ff4d7d1f9edf

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
---

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__)