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. Unexpected blank line before QTextFrame
Qt 6.11 is out! See what's new in the release blog

Unexpected blank line before QTextFrame

Scheduled Pinned Locked Moved General and Desktop
1 Posts 1 Posters 702 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.
  • Y Offline
    Y Offline
    YuriQ
    wrote on last edited by
    #1

    Hello.
    I use Qt 5.2.1 under Windows 8.1. Please take a look at the sample code:
    @
    int main( int argc, char *argv[] )
    {
    QApplication app(argc, argv);

    QTextEdit editor;
    QTextCursor cur(editor.document());

    QTextFrameFormat fmt;
    fmt.setBorder(1);
    fmt.setPosition(QTextFrameFormat::Position::FloatLeft);
    fmt.setPadding(0);
    fmt.setMargin(0);

    for (int i = 0; i < 10; i++)
    {
    cur.movePosition(QTextCursor::Start);
    QTextFrame* frame = cur.insertFrame(fmt);
    frame->firstCursorPosition().insertText("sample text");
    }

    editor.show();
    return app.exec();
    }
    @

    The code above just adds few frames with text in QTextEdit widget. Everything is ok except one blank line in the beginning of QTextEdit's content. Why this blank line appears? What should I do to prevent appearing of blank line?

    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