Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. QCompleter set padding issue
Qt 6.11 is out! See what's new in the release blog

QCompleter set padding issue

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 986 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.
  • S Offline
    S Offline
    saravanavelu39
    wrote on last edited by
    #1

    Hi all,

        Here is my code,
    

    @QCompleter *complete = new QCompleter(QStringList);
    complete->setCaseSensitivity(Qt::CaseInsensitive);
    complete->setCompletionMode(QCompleter::PopupCompletion);
    complete->setMaxVisibleItems(1);

    complete->popup()->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
        QFont font( "Newyork", 16);
    complete->popup()->setFont(font);
    

    complete->popup()->setStyleSheet("background-color:#0000FF;color:white;padding:5px;");
    ui->lineedit->setCompleter(complete);@

    in here if i enter the lineedit means Qcompleter linedit popup is displayed,,If i click the padding area means Qcompleter is not working,,but if i click over the font means Qcompleter is working,,what is the problem in padding area,,Please give me a solution,,thanks

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi,

      Just an educated guess but I would say that the padding is not a "sensible" area

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      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