Coherence: one component per idea, one spelling per word, one truth per claim
Claude-Session: https://claude.ai/code/session_01Ms2FbjQy31TVf3CEvQhGM8
This commit is contained in:
@@ -278,32 +278,18 @@ SettingsPage {
|
||||
|
||||
SettingsCard {
|
||||
title: "Applications"
|
||||
subtitle: "Apps appear after their first notification. Recent senders and apps you have customized stay up top; the rest wait in All apps."
|
||||
subtitle: "Applications appear after their first notification. Recent senders and applications you have customized stay up top; the rest wait in All applications."
|
||||
|
||||
TextRow {
|
||||
visible: Notifs.applications.length === 0
|
||||
label: "No applications remembered yet"
|
||||
detail: "Application controls will appear after the first notification arrives."
|
||||
detail: "Application controls will appear after the first notification arrives"
|
||||
divider: false
|
||||
}
|
||||
|
||||
Item {
|
||||
width: parent.width
|
||||
height: root.recentApps.length > 0 ? 28 : 0
|
||||
visible: height > 0
|
||||
|
||||
Text {
|
||||
anchors.left: parent.left
|
||||
anchors.bottom: parent.bottom
|
||||
anchors.bottomMargin: 4
|
||||
text: "Recent"
|
||||
color: Theme.fgMuted
|
||||
font.family: Theme.fontFamily
|
||||
font.pixelSize: Math.max(9, Theme.fontSizeSmall - 1)
|
||||
font.weight: Font.Bold
|
||||
font.capitalization: Font.AllUppercase
|
||||
font.letterSpacing: 0.8
|
||||
}
|
||||
SectionLabel {
|
||||
visible: root.recentApps.length > 0
|
||||
text: "Recent"
|
||||
}
|
||||
|
||||
Repeater {
|
||||
@@ -329,23 +315,9 @@ SettingsPage {
|
||||
}
|
||||
}
|
||||
|
||||
Item {
|
||||
width: parent.width
|
||||
height: root.customizedApps.length > 0 ? 28 : 0
|
||||
visible: height > 0
|
||||
|
||||
Text {
|
||||
anchors.left: parent.left
|
||||
anchors.bottom: parent.bottom
|
||||
anchors.bottomMargin: 4
|
||||
text: "Customized"
|
||||
color: Theme.fgMuted
|
||||
font.family: Theme.fontFamily
|
||||
font.pixelSize: Math.max(9, Theme.fontSizeSmall - 1)
|
||||
font.weight: Font.Bold
|
||||
font.capitalization: Font.AllUppercase
|
||||
font.letterSpacing: 0.8
|
||||
}
|
||||
SectionLabel {
|
||||
visible: root.customizedApps.length > 0
|
||||
text: "Customized"
|
||||
}
|
||||
|
||||
Repeater {
|
||||
@@ -400,7 +372,7 @@ SettingsPage {
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
placeholder: "Search apps"
|
||||
placeholder: "Search applications"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user