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

Nokia Logo position is too high

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • Not Evaluated
    • 5.0.0
    • 5.0.0
    • Location
    • None
    • Ubuntu 10.10

    Description

      Nokia logo should be bottom left aligned. As seen in the attached screenshot the position is too high.

      My test program is bellow:

      import QtQuick 2.0
      import QtLocation 5.0
      
      Map {
          id: map
      
          width: 320;
          height: 480;
      
          plugin : Plugin {
                  name : "nokia"
          }
      
          zoomLevel: 7
      
          /* Disable kinetic panning */
          flick.enabled: false
      
      
          center: Coordinate {
              latitude: 61.30
              longitude: 23.46
          }
      
          MapMouseArea {
              property int lastX : -1
              property int lastY : -1
              anchors.fill: parent
      
              onPressed : {
                  lastX = mouse.x
                  lastY = mouse.y
              }
              onReleased : {
                  lastX = -1
                  lastY = -1
              }
              onPositionChanged: {
                  if (mouse.buttons == Qt.LeftButton) {
                      if ((lastX != -1) && (lastY != -1)) {
                          var dx = mouse.x - lastX
                          var dy = mouse.y - lastY
                          map.pan(-dx, -dy)
                      }
                      lastX = mouse.x
                      lastY = mouse.y
                  }
              }
              onDoubleClicked: {
                  map.center = mouseToCoordinate(mouse)
                  map.zoomLevel += 1
                  lastX = -1
                  lastY = -1
              }
          }
      
          MapCircle {
              id : circle
              center : Coordinate {
                          latitude: 61.30
                          longitude: 23.46
                      }
              color : "#80FF0000"
              radius : 1000.0
              MapMouseArea {
                  anchors.fill: parent
                  onPositionChanged: {
                      if (mouse.buttons == Qt.LeftButton)
                          circle.center = mouse.coordinate
                      if (mouse.buttons == Qt.RightButton)
                          circle.radius = circle.center.distanceTo(mouseToCoordinate(mouse))
                  }
              }
          }
      }
      

      Attachments

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

        Activity

          People

            alewilso Alex Wilson (closed Nokia identity) (Inactive)
            cadam Cristian Adam
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes