Remove double blank lines from QML files
This commit is contained in:
@@ -11,7 +11,6 @@ Rectangle {
|
||||
property RoomList roomList
|
||||
readonly property alias accountList: accountList
|
||||
|
||||
|
||||
color: theme.mainPane.accountBar.background
|
||||
implicitHeight:
|
||||
accountList.count >= 2 ?
|
||||
@@ -79,7 +78,6 @@ Rectangle {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
HShortcut {
|
||||
sequences: window.settings.Keys.Accounts.previous
|
||||
onActivated: {
|
||||
|
@@ -20,7 +20,6 @@ HMenu {
|
||||
py.callClientCoro(userId, "set_presence", [presence, statusMsg])
|
||||
}
|
||||
|
||||
|
||||
onOpened: statusText.forceActiveFocus()
|
||||
|
||||
HLabeledItem {
|
||||
|
@@ -40,7 +40,6 @@ HTile {
|
||||
py.callClientCoro(model.id, "set_presence", [presence])
|
||||
}
|
||||
|
||||
|
||||
backgroundColor: theme.mainPane.listView.account.background
|
||||
|
||||
contentItem: ContentRow {
|
||||
|
@@ -10,7 +10,6 @@ Rectangle {
|
||||
readonly property alias addAccountButton: addAccountButton
|
||||
readonly property alias filterField: filterField
|
||||
|
||||
|
||||
// Hide filter field overflowing for a sec on size changes
|
||||
clip: true
|
||||
implicitHeight: theme.baseElementsHeight
|
||||
@@ -69,7 +68,6 @@ Rectangle {
|
||||
if (window.settings.RoomList.escape_clears_filter) text = ""
|
||||
}
|
||||
|
||||
|
||||
Behavior on opacity { HNumberAnimation {} }
|
||||
|
||||
HShortcut {
|
||||
|
@@ -22,7 +22,6 @@ HDrawer {
|
||||
bottomBar.filterField.forceActiveFocus()
|
||||
}
|
||||
|
||||
|
||||
saveName: "mainPane"
|
||||
background: Rectangle { color: theme.mainPane.background }
|
||||
requireDefaultSize: bottomBar.filterField.activeFocus
|
||||
|
@@ -11,7 +11,6 @@ HLabel {
|
||||
property bool localUnreads: false
|
||||
property bool localHighlights: false
|
||||
|
||||
|
||||
text:
|
||||
unreads >= 1000000 ? Math.floor(unreads / 1000000) + "M" :
|
||||
unreads >= 1000 ? Math.floor(unreads / 1000) + "K" :
|
||||
|
@@ -29,7 +29,6 @@ HTile {
|
||||
readonly property QtObject lastEvent:
|
||||
eventModel.count > 0 ? eventModel.get(0) : null
|
||||
|
||||
|
||||
backgroundColor: theme.mainPane.listView.room.background
|
||||
leftPadding: theme.spacing * 2
|
||||
rightPadding: theme.spacing
|
||||
|
@@ -148,7 +148,6 @@ HListView {
|
||||
return false
|
||||
}
|
||||
|
||||
|
||||
highlightRangeMode:
|
||||
keepListCentered ? ListView.ApplyRange : ListView.NoHighlightRange
|
||||
|
||||
|
Reference in New Issue
Block a user