RESOLVED INVALID 109030
[Qt] Incorrect letter spacing for scaled QGraphicsWebView
https://bugs.webkit.org/show_bug.cgi?id=109030
Summary [Qt] Incorrect letter spacing for scaled QGraphicsWebView
Titta Heikkala
Reported 2013-02-06 02:13:03 PST
Created attachment 186798 [details] Result Overview: Scaled QGraphicsWebView has incorrect letter spacing. Steps To Reproduce: The code below can be used to reproduce the issue: MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) { QGraphicsView *view = new QGraphicsView(this); setCentralWidget(view); QGraphicsScene *scene = new QGraphicsScene(view); view->setScene(scene); w = new QGraphicsWebView(); w->load(QUrl("http://blog.qt.digia.com/blog/2012/12/13/qt-5-0-rc2-released/")); w->resize(1000, 800); scene->addItem(w); w->setScale(1.4); resize(1000, 800); } Actual Results: The font spacing varies in the view. Attached an image that shows the result. Expected Results: The font spacing should be constant throughout the view. Additional Information: The issue is reproducable with Qt 4.8.2, Qt 4.8.4 and 5.0.0 on Windows 7 and Linux Fedora 16 series
Attachments
Result (53.73 KB, image/png)
2013-02-06 02:13 PST, Titta Heikkala
no flags
Note You need to log in before you can comment on or make changes to this bug.