Merge lp://staging/~rperier/unity/command-lens-switching into lp://staging/unity
Proposed by
Romain Perier
Status: | Superseded |
---|---|
Proposed branch: | lp://staging/~rperier/unity/command-lens-switching |
Merge into: | lp://staging/unity |
Diff against target: |
52 lines (+11/-2) 3 files modified
dash/DashView.cpp (+4/-1) dash/LensBar.h (+2/-1) tests/autopilot/unity/tests/test_dash.py (+5/-0) |
To merge this branch: | bzr merge lp://staging/~rperier/unity/command-lens-switching |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Łukasz Zemczak (community) | Needs Fixing | ||
Review via email: mp+145882@code.staging.launchpad.net |
This proposal has been superseded by a proposal from 2013-03-29.
Commit message
DashView: Don't close the dash when switching from the command lens to the home lens
Description of the change
When I open the command lens by pressing ALT+F2, if I press "Super" the dash is closed. It should not be closed, it should switch to the home lens instead. This is the suite of the bug 1019457 .
I already opened a bug for that, this is the bug https:/
To post a comment you must log in.
Unmerged revisions
- 3084. By Romain Perier
-
Improving autopilot test
- 3083. By Romain Perier
-
Don't close the dash when switching from the command lens to the home lens
Code looks good (one indentation on line 13 a part).
Thanks a lot!
On tests:
50 +
Please, remove this empty space
49 + self.assertThat (self.dash. visible, Eventually( Equals( False)) )
Probably it's better to check this instead: (self.dash. active_ lens, Eventually( Equals( 'home.lens' )))
self.assertThat
Also, please add that assert statement also in the test_can_ go_from_ dash_to_ command_ lens test.