Hi<br><br>- The following code on windows with qscintilla 2.5 doesn't have the same render on screen as with 2.4.6<br>the "courier new" font was "clear" on 2.4.6 but on 2.5 the font display is kind of blurred.<br>
Any ideas??<br><br>#include <QApplication><br>
#include <Qsci/qsciscintilla.h><br>#include <Qsci/qscilexercpp.h><br><br>int main(int argc, char* argv[])<br>{<br> QApplication app(argc, argv);<br> <br> QsciScintilla *qscintilla = new QsciScintilla;<br>
qscintilla->setUtf8(true);<br><br> QsciLexerCPP *lexer = new QsciLexerCPP;<br> lexer->setDefaultFont(QFont("Courier New",10));<br><br> qscintilla->setLexer(lexer);<br><br> qscintilla->show();<br>
return app.exec();<br>}<br><br>- Although, is there a way to get or check out somewhere the old released version of qscintilla?<br><br>Regards.<br>Chris.<br>