https://bugs.kde.org/show_bug.cgi?id=438650
Bug ID: 438650 Summary: Text can escape from SpinBox when width is constrained Product: frameworks-qqc2-desktop-style Version: unspecified Platform: Other OS: Linux Status: REPORTED Severity: normal Priority: NOR Component: general Assignee: notm...@gmail.com Reporter: n...@kde.org CC: ahiems...@heimr.nl, k...@davidedmundson.co.uk, noaha...@gmail.com Target Milestone: --- Consider this test case: import QtQuick 2.5 import QtQuick.Controls 2.5 as QQC2 Item { implicitWidth: 200 implicitHeight: 200 QQC2.SpinBox { anchors.centerIn: parent width: 50 editable: true from: 0 to: 9999999 } } Enter "9999999" in the box and the text will overflow. It should be elided or clipped, at least, to mirror the behavior of a text field. -- You are receiving this mail because: You are watching all bug changes.