Add direct chat && fix compilation issue.
This commit is contained in:
@@ -100,11 +100,13 @@ Item {
|
||||
}
|
||||
proxyRoles: [
|
||||
ExpressionRole { name: "isFavorite"; expression: category === "Favorites" },
|
||||
ExpressionRole { name: "isDirectChat"; expression: category === "People" },
|
||||
ExpressionRole { name: "isLowPriority"; expression: category === "Low Priorities" }
|
||||
]
|
||||
sorters: [
|
||||
RoleSorter { roleName: "isFavorite"; sortOrder: Qt.DescendingOrder },
|
||||
RoleSorter { roleName: "isLowPriority" },
|
||||
RoleSorter { roleName: "isDirectChat" },
|
||||
StringSorter { roleName: "name" }
|
||||
]
|
||||
}
|
||||
|
||||
5
qml/form/SettingForm.qml
Normal file
5
qml/form/SettingForm.qml
Normal file
@@ -0,0 +1,5 @@
|
||||
import QtQuick 2.9
|
||||
|
||||
Item {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user