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

Map tiles are sometimes grayed out when other controls have focus

    XMLWordPrintable

Details

    • Bug
    • Resolution: Unresolved
    • P2: Important
    • None
    • 5.7.1, 5.8.0, 5.9.1, 5.10.0
    • None
    • Windows 10 Pro

    Description

      Map tiles get grayed out when other controls (for instance menus, tool tips, ...) are shown. The problem seems to appear more often on higher (more detailed) zoom levels. I noticed this issue with older Qt versions as well.

      Steps to reproduce:

      1. Zoom into the map
      2. Press the popup button
      3. Move the mouse along the popup menu's entries

       

      import QtQuick 2.7
      import QtQuick.Controls 2.0
      import QtQuick.Layouts 1.3
      
      import QtLocation 5.9
      import QtPositioning 5.8
      
      ApplicationWindow {
          visible: true
          width: 640
          height: 480
          title: qsTr("Hello World")
      
          Map {
              id: map
              anchors.fill: parent
      
              plugin: Plugin {
                  name: "osm"
              }
          }
      
          footer: Button {
              text: "Popup"
      
              onClicked: popup.open()
      
              Menu {
                  id: popup
                  modal: true
      
                  Repeater {
                      model: 10
      
                      MenuItem {
                          text: "Test"
                          onClicked: console.log("Clicked")
                      }
                  }
              }
          }
      }
      
      

      Attachments

        Issue Links

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

          Activity

            People

              paangele Paolo Angelelli
              DanielSt Peter Staab
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:

                Gerrit Reviews

                  There are no open Gerrit changes