Skip to content
Snippets Groups Projects
Commit 836b64a1 authored by Franck Laurent's avatar Franck Laurent Committed by Sébastien Blin
Browse files

Focus: override activeFocus item

- add an outline on the item that have the active focus
- override only after a tab key press

GitLab: #1082

Change-Id: Ib549052e0fa2fe6d781df6980ce662919925c473
parent f1f579b0
No related branches found
No related tags found
No related merge requests found
......@@ -58,19 +58,19 @@ ColumnLayout {
var description = findChild(uut, "descriptionLineEdit")
// Fill Title & Description
title.text = "Title"
description.text = "description"
compare(title.text, "Title")
compare(description.text, "description")
title.dynamicText = "Title"
description.dynamicText = "description"
compare(title.dynamicText, "Title")
compare(description.dynamicText, "description")
// Hide & Show window
uut.visible = false
uut.visible = true
compare(title.focus, false)
compare(title.text, "")
compare(title.staticText, "")
compare(description.focus, false)
compare(description.text, "")
compare(description.staticText, "")
}
}
......
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