add note about modifying profile (#812)

This commit is contained in:
Logan McNaughton
2026-04-26 09:46:12 -06:00
committed by GitHub
parent fe42efadfa
commit 511d8461c2
+2 -2
View File
@@ -7,7 +7,7 @@ export global InputProfileData {
}
export component InputProfileDialog inherits Window {
title: @tr("Create Input Profile");
title: @tr("Create/Modify Input Profile");
callback profile_creation_button_clicked;
in-out property dinput <=> InputProfileData.dinput;
in-out property profile_name <=> InputProfileData.profile_name;
@@ -15,7 +15,7 @@ export component InputProfileDialog inherits Window {
VerticalBox {
HorizontalBox {
LineEdit {
placeholder-text: @tr("Enter profile name");
placeholder-text: @tr("Enter profile name to create or modify");
preferred-width: 300px;
edited(text) => {
InputProfileData.profile_name = text;