mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-28 07:22:50 -05:00
dock: some cleanup to overflow
This commit is contained in:
@@ -166,11 +166,11 @@ Item {
|
||||
SettingsSliderRow {
|
||||
settingKey: "dockMaxVisibleApps"
|
||||
tags: ["dock", "overflow", "max", "apps", "limit"]
|
||||
text: I18n.tr("Max Number of Pinned Apps Before Overflow")
|
||||
minimum: 3
|
||||
maximum: 20
|
||||
text: I18n.tr("Max Pinned Apps (0 = Unlimited)")
|
||||
minimum: 0
|
||||
maximum: 30
|
||||
value: SettingsData.dockMaxVisibleApps
|
||||
defaultValue: 10
|
||||
defaultValue: 0
|
||||
unit: ""
|
||||
onSliderValueChanged: newValue => SettingsData.set("dockMaxVisibleApps", newValue)
|
||||
}
|
||||
@@ -178,11 +178,11 @@ Item {
|
||||
SettingsSliderRow {
|
||||
settingKey: "dockMaxVisibleRunningApps"
|
||||
tags: ["dock", "overflow", "max", "running", "apps", "limit"]
|
||||
text: I18n.tr("Max Open Running Apps Before Overflow")
|
||||
text: I18n.tr("Max Running Apps (0 = Unlimited)")
|
||||
minimum: 0
|
||||
maximum: 20
|
||||
maximum: 30
|
||||
value: SettingsData.dockMaxVisibleRunningApps
|
||||
defaultValue: 10
|
||||
defaultValue: 0
|
||||
unit: ""
|
||||
onSliderValueChanged: newValue => SettingsData.set("dockMaxVisibleRunningApps", newValue)
|
||||
}
|
||||
@@ -191,7 +191,7 @@ Item {
|
||||
settingKey: "dockShowOverflowBadge"
|
||||
tags: ["dock", "overflow", "badge", "count", "indicator"]
|
||||
text: I18n.tr("Show Overflow Badge Count")
|
||||
description: I18n.tr("Display a badge with the number of apps in overflow")
|
||||
description: I18n.tr("Displays count when overflow is active")
|
||||
checked: SettingsData.dockShowOverflowBadge
|
||||
onToggled: checked => SettingsData.set("dockShowOverflowBadge", checked)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user