Dash should highlight item activated on Enter
Bug #1281925 reported by
Denis Washington
This bug report was converted into a question: question #245310: Dash should highlight item activated on Enter.
This bug affects 2 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Unity |
Opinion
|
Medium
|
Eleni Maria Stea |
Bug Description
Currently, it is not obvious which Dash item is activated when you press Enter while the search field has focus. Many users might not even know that they can activate the first search result by pressing Enter in the dash, and think they need to always navigate to it with the arrow keys or the mouse.
For this reason, it would be nice if the first item in the Dash would be visually highlighted somehow, to make clear that pressing Enter will activate it right from the search field.
Related branches
lp://staging/~hikiko/unity/unity.1281925
On hold
for merging
into
lp://staging/unity
- PS Jenkins bot (community): Approve (continuous-integration)
- John Lea: Pending requested
- Andrea Azzarone: Pending requested
- Unity Team: Pending requested
-
Diff: 81 lines (+27/-0)5 files modifieddash/DashView.cpp (+2/-0)
dash/ResultViewGrid.cpp (+7/-0)
dash/ResultViewGrid.h (+2/-0)
dash/ScopeView.cpp (+14/-0)
dash/ScopeView.h (+2/-0)
Changed in unity: | |
assignee: | nobody → Eleni Maria Stea (hikiko) |
Changed in unity: | |
status: | New → In Progress |
Changed in unity: | |
milestone: | none → 7.2.0 |
importance: | Undecided → Medium |
Changed in unity: | |
milestone: | 7.2.0 → none |
To post a comment you must log in.
@hikiko; thanks for looking into this!
At 0:58 in the attached youtube video there is a brief moment when both the category header and the first search result are both highlighted at the same time. We have an issue in that there should only every be one item highlighted at any one time. When we looked at this issue before we couldn't find a clean way around this issue and that is why the first search result is not currently highlighted by default.
If the first search result is highlighted by default, obvious solution to this problem (when the user presses the down arrow, the highlight moves up) would be confusing because the focus would be going the the opposite direction from the key press. Jumping the first category header would also be inconsistent.
See if you can find a clean solution around the problem given that A) there can only be one focused item at any one time B) when the user presses the down arrow for the first time they expect the focus to go one step downwards from the text entry box they were typing in. The current implementation in 13.10 is the best solution we could find to this problem, but there may be a better solution and we are open to suggestions.