What's wrong with TextField in Qt 6.4.0 ?
-
Qt 6.4.0 and Qt Creator 8.0.2
import QtQuick
import QtQuick.Controlsimport QtQuick import QtQuick.Controls ApplicationWindow { width: 500 height: 500 visible: true Rectangle { anchors.fill: parent TextField { text: "abc" } } }
Application Output: QT_QUICK_CONTROLS_TEXT_SELECTION_BEHAVIOR ""
Why ? -
what is the issue. Are you not seeing the TextField ?
-
@dheerendra said in What's wrong with TextField in Qt 6.4.0 ?:
what is the issue. Are you not seeing the TextField ?
looks ok ! How to remove the warning ?
-
@BVladimir said in What's wrong with TextField in Qt 6.4.0 ?:
QT_QUICK_CONTROLS_TEXT_SELECTION_BEHAVIOR
It is about selection of text by touchscreen. You can refer the Release Notes here.
-
@dheerendra said in What's wrong with TextField in Qt 6.4.0 ?:
It is about selection of text by touchscreen. You can refer the Release Notes here.
thanks a lot
-
@BVladimir said in What's wrong with TextField in Qt 6.4.0 ?:
QT_QUICK_CONTROLS_TEXT_SELECTION_BEHAVIOR
It is about selection of text by touchscreen. You can refer the Release Notes here.
This post is deleted! -
@BVladimir said in What's wrong with TextField in Qt 6.4.0 ?:
QT_QUICK_CONTROLS_TEXT_SELECTION_BEHAVIOR
It is about selection of text by touchscreen. You can refer the Release Notes here.
@dheerendra said in What's wrong with TextField in Qt 6.4.0 ?:
@BVladimir said in What's wrong with TextField in Qt 6.4.0 ?:
QT_QUICK_CONTROLS_TEXT_SELECTION_BEHAVIOR
It is about selection of text by touchscreen. You can refer the Release Notes here.
But why it is printed on Application Output?
When many TextFields are used, e.g. in a ListView, then it pollutes the Application Output.
How can this be deactivated? -
@Emanuel-Reisinger said in What's wrong with TextField in Qt 6.4.0 ?:
How can this be deactivated?
it looks like this will be fixed in the next version of Qt
-
@Emanuel-Reisinger said in What's wrong with TextField in Qt 6.4.0 ?:
How can this be deactivated?
it looks like this will be fixed in the next version of Qt
@BVladimir
Is there already a ticket? I have the same problem, trying for two days figuring out, when exactly this is happening and found not an open issue in the bug tracker -
@BVladimir
Is there already a ticket? I have the same problem, trying for two days figuring out, when exactly this is happening and found not an open issue in the bug tracker@Rusticus With Qt 6.4.1 this issue is fixed.
BR Emanuel