Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. Non resizable TextField "underline" ?
Forum Updated to NodeBB v4.3 + New Features

Non resizable TextField "underline" ?

Scheduled Pinned Locked Moved Solved QML and Qt Quick
2 Posts 1 Posters 318 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Offline
    K Offline
    krokstr
    wrote on last edited by krokstr
    #1

    Hello,

    After upgrading to Qt5.12, I am experiencing problem with the size of TextField's "underline" (the gray line that is fixed on the bottom of TextField). Before the upgrade this line was exactly the same size as I am giving to TextField. Now when I grab and place a new TextField it has size of width:120 height:43, so the line I am having problem with is always wide:120, no mater what width I am giving to TextField. In my case it comes bigger than i want, both on Qt Creator and the devices I'm deploying. Anyone with idea or fix for this? Thanks!

    1 Reply Last reply
    0
    • K Offline
      K Offline
      krokstr
      wrote on last edited by
      #2

      Solution found, still cannot explain why it's happening that way... anyway there it is.

      This was added to TextField and now the default underline is gone:

              background: Item {
                      width: parent.width
                      height: parent.height
                      Rectangle {
                          color: "#000000"
                          height: 2
                          width: parent.width
                          anchors.bottom: parent.bottom
                      }
                  }
      
      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved