Skip to content

Commit

Permalink
InputPanel: fix deprecated property definition
Browse files Browse the repository at this point in the history
Implicitly defined onFoo properties in Connections are deprecated.

Signed-off-by: Andrea Ricchi <[email protected]>
  • Loading branch information
AndreaRicchi committed Jul 1, 2024
1 parent ec47129 commit 53bdb0c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/qml/InputPanel.qml
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,12 @@ Item {
}

Connections {
target: InputPanel
onLanguageLayoutChanged: {
function onLanguageLayoutChanged() {
languageLayout = InputPanel.languageLayout;
loadLettersLayout();
}

target: InputPanel
}

}
Expand Down

0 comments on commit 53bdb0c

Please sign in to comment.