Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-28774

Incorrect letter spacing for scaled QGraphicsWebView

    XMLWordPrintable

Details

    • Bug
    • Resolution: Cannot Reproduce
    • P2: Important
    • 5.4.0 Beta
    • 4.8.2, 4.8.4, 5.0.0
    • WebKit
    • None
    • Windows 7, Linux Fedora 16 series

    Description

      The letter spacing is incorrect for scaled QGraphicsWebView. 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);
      }
      

      Attached also an image to so the issue.

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            ntg Pierre Rossi
            qtcomsupport Qt Support
            Votes:
            1 Vote for this issue
            Watchers:
            6 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes