Skip to content

Commit

Permalink
Merge pull request #5 from sletta/format-request
Browse files Browse the repository at this point in the history
[maliit] Don't override the default surface format, extend it instead.
  • Loading branch information
pvuorela committed Aug 20, 2014
2 parents a19765f + ccfa258 commit f5ae1de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maliit-framework/src/quick/inputmethodquick.cpp
Expand Up @@ -41,7 +41,7 @@ QQuickView *createWindow(MAbstractInputMethodHost *host)
{
QScopedPointer<QQuickView> view(new QQuickView);

QSurfaceFormat format;
QSurfaceFormat format = view->requestedFormat();
format.setAlphaBufferSize(8);
view->setFormat(format);
view->setColor(QColor(Qt::transparent));
Expand Down

0 comments on commit f5ae1de

Please sign in to comment.