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

Rendering artifacts on MacOS Big Sur

    XMLWordPrintable

Details

    • macOS

    Description

      When an item gets dynamically loaded using a timer while the application is in full screen mode, the following graphical artifacts are present in an ApplicationWindow:

      The issue seems limited to MacOS, and specifically to Big Sur, as we do not encounter it on other the Windows and Linux operating systems and not on the latest version of MacOS (Monterey).

      Minimal example:

      import QtQuick.Controls
      import QtQuick
      ApplicationWindow 
      {
          width: 640
          height: 480
          visible: true
          Component.onCompleted: showFullScreen();
          Timer
          {
              running: true; 
              onTriggered: 
              loader.active = true; 
              interval: 1000; 
          }
      
          Loader
          {
              id: loader;
              active: false;
              sourceComponent: Rectangle
              {
                  color: "red"; 
                  width: 64; 
                  height: 64; 
              }
          }
      }
      

       

       

      Attachments

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

        Activity

          People

            qt.team.quick.subscriptions Qt Quick and Widgets Team
            nielsb Niels Billen
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:

              Gerrit Reviews

                There are no open Gerrit changes