Merge pull request #721 from 3akev/kb_toast_setting

Add setting to disable keyboard layout toast
This commit is contained in:
Lemmy
2025-11-11 19:16:30 -05:00
committed by GitHub
4 changed files with 36 additions and 4 deletions
@@ -226,6 +226,25 @@ ColumnLayout {
}
}
}
NDivider {
Layout.fillWidth: true
Layout.topMargin: Style.marginL
Layout.bottomMargin: Style.marginL
}
// Toast Configuration
NHeader {
label: I18n.tr("settings.notifications.toast.section.label")
description: I18n.tr("settings.notifications.toast.section.description")
}
NToggle {
label: I18n.tr("settings.notifications.toast.enabled.label")
description: I18n.tr("settings.notifications.toast.enabled.description")
checked: Settings.data.notifications.enableKeyboardLayoutToast
onToggled: checked => Settings.data.notifications.enableKeyboardLayoutToast = checked
}
}
NDivider {