| Summary: | Welcome screen: search field in toolbar doesn't look like a search field | ||
|---|---|---|---|
| Product: | [Unmaintained] ring-kde | Reporter: | Nate Graham <nate> |
| Component: | general | Assignee: | Emmanuel Lepage Vallée <emmanuel.lepage> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Other | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Nate Graham
2019-02-06 15:14:42 UTC
I am a bit puzzled by this one, some /computer/ show the border and some don't. Regardless of the theme or color scheme. I did not investigate. searchbox.qml has
border.width: 1
border.color: Kirigami.Theme.textColor
Turns out this is a regression in Qt 5.12 From https://doc.qt.io/qt-5/qml-qtquick-controls2-textfield.html#background-prop > Note: If the background item has no explicit size specified, it automatically > follows the control's size. In most cases, there is no need to specify width or > height for a background item. This is currently not true with the Material theme on 5.12. The size was 0x0 until I set "height: search.height; width: search.width" on the background item. |