[QScintilla] Display issue on windows

christophe duvernois christophe.duvernois at gmail.com
Wed Apr 6 23:29:35 BST 2011


Hi

- The following code on windows with qscintilla 2.5 doesn't have the same
render on screen as with 2.4.6
the "courier new" font was "clear" on 2.4.6 but on 2.5 the font display is
kind of blurred.
Any ideas??

#include <QApplication>
#include <Qsci/qsciscintilla.h>
#include <Qsci/qscilexercpp.h>

int main(int argc, char* argv[])
{
    QApplication app(argc, argv);

    QsciScintilla *qscintilla = new QsciScintilla;
    qscintilla->setUtf8(true);

    QsciLexerCPP *lexer = new QsciLexerCPP;
    lexer->setDefaultFont(QFont("Courier New",10));

    qscintilla->setLexer(lexer);

    qscintilla->show();
    return app.exec();
}

- Although, is there a way to get or check out somewhere the old released
version of qscintilla?

Regards.
Chris.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.riverbankcomputing.com/pipermail/qscintilla/attachments/20110407/9b09b8bd/attachment.html>


More information about the QScintilla mailing list