diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-10-25 18:32:50 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-10-25 18:32:50 +0200 |
commit | ef043a4fb69f68e4a7258e84194c567f64edc51f (patch) | |
tree | 48f175a79d8cb0e00cea1bf44c379b46c426efe8 | |
parent | fix typo in the default bookmarks (diff) | |
download | rekonq-ef043a4fb69f68e4a7258e84194c567f64edc51f.tar.xz |
Remove raster graphics system by default.
This is the cause of some problems with UI (eg: contextual menus not shown),
probably related to some HW/driver combinations
BUG:255175
CCMAIL:bigbrovar@gmail.com
-rw-r--r-- | src/main.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index 2a5ee528..db6a435f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -189,10 +189,7 @@ extern "C" KDE_EXPORT int kdemain(int argc, char **argv) kWarning() << "rekonq is already running!"; return 0; } -#if defined(Q_WS_X11) - // On X11, the raster engine gives better performance than native. - QApplication::setGraphicsSystem(QString::fromLatin1("raster")); -#endif + Application app; return app.exec(); |