enable qtaccessibility plugin so that screenreading of QAction menu works

(tested on Jaws screenreader demo on Windows 7, per bug report to mailing list
by Robert Jaquiss 2/25/2014)
jawsreader
Don Bright 2014-02-25 20:20:14 -06:00
parent 020d65eff0
commit 36e0d73e69
2 changed files with 5 additions and 0 deletions

View File

@ -41,6 +41,8 @@ TEMPLATE = app
INCLUDEPATH += src
DEPENDPATH += src
QTPLUGIN += qtaccessiblewidgets
# Handle custom library location.
# Used when manually installing 3rd party libraries
OPENSCAD_LIBDIR = $$(OPENSCAD_LIBRARIES)

View File

@ -70,6 +70,9 @@
#include <boost/foreach.hpp>
#include "boosty.h"
#include <QtPlugin>
Q_IMPORT_PLUGIN(qtaccessiblewidgets)
#ifdef _MSC_VER
#define snprintf _snprintf
#endif