Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. Scroll problems with textArea on Harmattan
Qt 6.11 is out! See what's new in the release blog

Scroll problems with textArea on Harmattan

Scheduled Pinned Locked Moved Mobile and Embedded
1 Posts 1 Posters 2.1k 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
    kimf
    wrote on last edited by
    #1

    Hi

    I'm trying my hands on a simple Qt / QML application for the Nokia N9, and have this weird problem with the TextArea, it will not scroll.

    Everything works just great, but whenever I load a large text into the TextArea I'm unable to swipe the text up to reach the later parts.

    I have tried to place the TextArea in a Flickable (which works with the TextEdit, but it does not have the edit functions I'm after) to no avail !

    Any ideas ?

    The code :

    @import QtQuick 1.1
    import com.nokia.meego 1.0

    Page {
    id: page1
    tools: commonTools

         TextArea {
             id: edit
             anchors.fill: parent
             platformEnableEditBubble: true
             smooth: true
             wrapMode: TextEdit.WordWrap
             font.pointSize: 20
             font.family: "Times New Roman"
             textFormat: TextEdit.PlainText
             focus: true
             clip: true;
         }
    

    }
    @

    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