Skip to content
Snippets Groups Projects
Commit 870911a6 authored by Prince Gupta's avatar Prince Gupta :speech_balloon: Committed by Jean-Baptiste Kempf
Browse files

qml: refactor loading view in MainViewLoader for clarity

parent 24e663be
No related branches found
No related tags found
1 merge request!5348qt: refactoring and code cleanup in browse model and view
......@@ -119,7 +119,7 @@ Widgets.StackViewExt {
_updateView()
// NOTE: This call is useful to avoid a binding loop on currentComponent.
currentComponentChanged.connect(function() { _updateView() })
currentComponentChanged.connect(_updateView)
}
onModelChanged: resetFocus()
......@@ -169,16 +169,17 @@ Widgets.StackViewExt {
function _updateView() {
// NOTE: When the currentItem is null we default to the StackView focusReason.
if (currentItem && currentItem.activeFocus)
_applyView(currentItem.focusReason)
_loadView(currentItem.focusReason)
else if (activeFocus)
_applyView(focusReason)
_loadView(focusReason)
else
replace(null, currentComponent)
_loadView()
}
function _applyView(reason) {
function _loadView(reason) {
replace(null, currentComponent)
setCurrentItemFocus(reason)
if (typeof reason !== "undefined")
setCurrentItemFocus(reason)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment