https://bugs.kde.org/show_bug.cgi?id=332512

--- Comment #88 from fabrice salvaire <fabrice.salva...@orange.fr> ---
Just a comment ...

I would say that KDE 5 has become something that is not a good promotion for Qt
(company) in the industry.

Linux desktop is a disaster ... there are UX issues everywhere (system
settings, printing dialog), long-standing bugs everywhere.

As many users, I cannot fork and patch KDE, I'd rather pay for something that
works!  That is the real issue, a framework must be maintained and it costs.

QMl is like web technologies, it looks well if you do the right things.

It is obvious that widget must auto-adjust to content.

Example to test with qmlscene-qt5 :

---------------------------------------------------------------

import QtQuick 2.11
import QtQuick.Controls 2.4
import QtQuick.Layouts 1.11

ApplicationWindow {
    width: nameList.childrenRect.width // resize to content !!!

    ListModel {
        id: nameModel
        ListElement { name: "AliceAliceAliceAlice" }
        ListElement { name: "Bob" }
        ListElement { name: "JaneJaneJaneJane" }
        ListElement { name: "Harry" }
        ListElement { name: "Wendy" }
    }

    Component {
        id: nameDelegate
        Text {
            text: name;
            font.pixelSize: 32
        }
    }

    Row {
        id: nameList
        anchors.fill: parent
        spacing: 10

        Repeater {
            model: nameModel
            delegate: nameDelegate
        }
    }
}

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to