1. Oct 04, 2017
  2. Sep 29, 2017
  3. Sep 28, 2017
  4. Sep 27, 2017
  5. Sep 25, 2017
  6. Sep 22, 2017
    • Alexandru Croitor's avatar
      Fix selectedText() to return the value of what findText("") finds · 9d962bc9
      Alexandru Croitor authored
      
      Previously when a find operation was finished by calling findText(""),
      the selection buffer was cleared and calling selectedText() would
      return an empty string, even though on the UI side a blue rectangle
      selection was still visible.
      
      This was due to an incorrect Unselect() call in
      WebContentsAdapter::stopFinding().
      
      With the new selection change support in the parent patch, and with the
      removed Unselect() call, selectedText() now properly returns the value
      of the highlighted blue selection after searching is finished.
      
      Task-number: QTBUG-60673
      Task-number: QTBUG-54071
      Task-number: QTBUG-53134
      Change-Id: I89e0eddb0c14af6d6c06ee878e706be65d3b0831
      Reviewed-by: default avatarViktor Engelmann <viktor.engelmann@qt.io>
      Reviewed-by: default avatarPeter Varga <pvarga@inf.u-szeged.hu>
      9d962bc9
    • Michal Klocek's avatar
      Fix system-zlib configure name collision with core · c23b274e
      Michal Klocek authored
      
      When -zlib is provided on windows for main configure line
      the system-zlib feature is forced on webengine. This
      is not expected since we assume zlib only for unix builds.
      Prepend 'webengine' for webengine system-zlib feature.
      
      Task-number: QTBUG-63367
      Change-Id: I983d2e0df0badbaf7a076662ce178009be151406
      Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@qt.io>
      c23b274e
  7. Sep 21, 2017
  8. Sep 20, 2017
  9. Sep 19, 2017
  10. Sep 18, 2017
  11. Sep 17, 2017
    • Peter Varga's avatar
      Commit the done-so-far IME composition on touch event · a12a8110
      Peter Varga authored
      Fix is based on afc9e2d9
      
      
      
      Moreover, new quick auto test has been added to check that the commit
      happens in case mouse and touch input events.
      
      Task-number: QTBUG-62942
      Change-Id: Ie9d55e0bb5b3bbc34c099502e735b94f37c5d5f8
      Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@qt.io>
      a12a8110
    • Alexandru Croitor's avatar
      [macOS] Fix creation of shared OpenGL 3.2 Core contexts · 56474df1
      Alexandru Croitor authored
      
      Due to a current issue described in QTBUG-63180, requesting a 3.2 Core
      context on macOS will advertise that a 4.1 context was created, even
      though that is not the case. Because
      RenderWidgetHostViewQtDelegateWidget will read the OpenGL major version
      from the global shared context and then apply that to its own context,
      this will cause a failure to create a shared context (one is 3.2, and
      the other is 4.1).
      
      The current workaround is to create the context with the default format
      version, instead of the global shared one. This way all the requested
      versions will be consitent.
      
      Task-number: QTBUG-60605
      Change-Id: I470c43ca9d15cb3887a0ed968b57c62518a33a72
      Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@qt.io>
      56474df1