Replace some binding loops with others

qt66
Nicolas Werner 1 year ago
parent 04c9eec8a4
commit 04cbbd2837
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
  1. 1
      resources/qml/MessageView.qml
  2. 1
      resources/qml/TimelineRow.qml
  3. 7
      resources/qml/delegates/FileMessage.qml
  4. 2
      resources/qml/delegates/MessageDelegate.qml
  5. 2
      resources/qml/delegates/TextMessage.qml

@ -164,6 +164,7 @@ Item {
userId: wrapper.userId
userName: wrapper.userName
y: section.visible && section.active ? section.y + section.height : 0
width: wrapper.width
background: Rectangle {
id: scrollHighlight

@ -50,7 +50,6 @@ AbstractButton {
height: row.height + (reactionRow.height > 0 ? reactionRow.height - 2 : 0) + unreadRow.height
hoverEnabled: true
width: parent.width
states: State {
name: "dragging"

@ -11,14 +11,13 @@ Item {
required property string filename
required property string filesize
height: row.height + (Settings.bubbles? 16: 24)
width: parent.width
implicitWidth: row.implicitWidth+metadataWidth
height: rowa.height + (Settings.bubbles? 16: 24)
implicitWidth: rowa.implicitWidth + metadataWidth
property int metadataWidth
property bool fitsMetadata: true
RowLayout {
id: row
id: rowa
anchors.centerIn: parent
width: parent.width - (Settings.bubbles? 16 : 24)

@ -39,6 +39,8 @@ Item {
property bool fitsMetadata: (chooser.child && chooser.child.fitsMetadata) ? chooser.child.fitsMetadata : false
property int metadataWidth
implicitWidth: chooser.child?.implicitWidth
height: chooser.child ? chooser.child.height : Nheko.paddingLarge
DelegateChooser {

@ -14,7 +14,7 @@ MatrixText {
required property string formatted
property string copyText: selectedText ? getText(selectionStart, selectionEnd) : body
property int metadataWidth
property bool fitsMetadata: positionAt(width,height-4) == positionAt(width-metadataWidth-10, height-4)
property bool fitsMetadata: false //positionAt(width,height-4) == positionAt(width-metadataWidth-10, height-4)
// table border-collapse doesn't seem to work
text: "

Loading…
Cancel
Save