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

Map tiles are sometimes grayed out when other controls have focus

XMLWordPrintable

      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")
                      }
                  }
              }
          }
      }
      
      

        1. mapbug.png
          263 kB
          Peter Staab
        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

            matthias_rauter Matthias Rauter
            DanielSt Peter Staab
            Votes:
            0 Vote for this issue
            Watchers:
            6 Start watching this issue

              Created:
              Updated:
              Resolved:

                There are no open Gerrit changes