Enable wxUSE_ACCESSIBILITY by default (MSW)
Compile accessibility support on Windows by default now that the generic
wxDataViewCtrl control implements accessible interface. After the
changes from 7dab555f71, accessibility
support is much more lightweight and doesn't interfere with normal win32
behavior, so this change shouldn't affect accessibility-unaware code in
any way.
This commit is contained in:
committed by
Václav Slavík
parent
d720155910
commit
8b5387bc3d
@@ -1359,12 +1359,16 @@
|
||||
#define wxUSE_DRAG_AND_DROP 1
|
||||
|
||||
// Use wxAccessible for enhanced and customisable accessibility.
|
||||
// Depends on wxUSE_OLE.
|
||||
// Depends on wxUSE_OLE on MSW.
|
||||
//
|
||||
// Default is 0.
|
||||
// Default is 1 on MSW, 0 elsewhere.
|
||||
//
|
||||
// Recommended setting (at present): 0
|
||||
// Recommended setting (at present): 1 (MSW-only)
|
||||
#ifdef __WXMSW__
|
||||
#define wxUSE_ACCESSIBILITY 1
|
||||
#else
|
||||
#define wxUSE_ACCESSIBILITY 0
|
||||
#endif
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// miscellaneous settings
|
||||
|
||||
Reference in New Issue
Block a user