Remove double blank lines from QML files

This commit is contained in:
miruka
2020-11-15 11:54:30 -04:00
parent 58257c0930
commit eed2cc4818
139 changed files with 0 additions and 162 deletions

View File

@@ -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: {

View File

@@ -20,7 +20,6 @@ HMenu {
py.callClientCoro(userId, "set_presence", [presence, statusMsg])
}
onOpened: statusText.forceActiveFocus()
HLabeledItem {

View File

@@ -40,7 +40,6 @@ HTile {
py.callClientCoro(model.id, "set_presence", [presence])
}
backgroundColor: theme.mainPane.listView.account.background
contentItem: ContentRow {

View File

@@ -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 {

View File

@@ -22,7 +22,6 @@ HDrawer {
bottomBar.filterField.forceActiveFocus()
}
saveName: "mainPane"
background: Rectangle { color: theme.mainPane.background }
requireDefaultSize: bottomBar.filterField.activeFocus

View File

@@ -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" :

View File

@@ -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

View File

@@ -148,7 +148,6 @@ HListView {
return false
}
highlightRangeMode:
keepListCentered ? ListView.ApplyRange : ListView.NoHighlightRange