Skip to content

Commit 498dd5e

Browse files
committed
Fix typos in qml functions
1 parent e053408 commit 498dd5e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/qml/EditorSettings.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Item {
4747
var settingsPaneHeightByParentWindow = 0.80 * data.parentWindowHeight; // 80 percent of the parent window's height
4848
settingsPane.height = scrollViewControl.contentHeight > settingsPaneHeightByParentWindow ? settingsPaneHeightByParentWindow : scrollViewControl.contentHeight;
4949
revealSettingsAnimation.start();
50-
settingsContainer.upadteScrollBarPosition();
50+
settingsContainer.updateScrollBarPosition();
5151
}
5252

5353
function onMainWindowResized (data) {
@@ -164,7 +164,7 @@ Item {
164164
easing.type: Easing.InOutQuad
165165
}
166166

167-
function upadteScrollBarPosition () {
167+
function updateScrollBarPosition () {
168168
editorSettingsVerticalScrollBar.position = settingsContainer.latestScrollBarPosition;
169169
}
170170

src/qml/kanbanMain.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ Item {
789789

790790
onVisibleChanged: {
791791
if (editorSettingsPopupContainer.visible) {
792-
editorSettings.upadteScrollBarPosition();
792+
editorSettings.updateScrollBarPosition();
793793
}
794794
}
795795
}

0 commit comments

Comments
 (0)