Merge lp://staging/~ris/unity-2d/fix-729478 into lp://staging/unity-2d/3.0
Proposed by
Robert Sajdok
Status: | Merged |
---|---|
Approved by: | Aurélien Gâteau |
Approved revision: | 493 |
Merged at revision: | 504 |
Proposed branch: | lp://staging/~ris/unity-2d/fix-729478 |
Merge into: | lp://staging/unity-2d/3.0 |
Diff against target: |
109 lines (+24/-1) 8 files modified
launcher/LauncherItem.qml (+1/-1) launcher/LauncherList.qml (+3/-0) launcher/UnityApplications/launcherapplication.cpp (+6/-0) launcher/UnityApplications/launcherapplication.h (+1/-0) launcher/UnityApplications/launcheritem.cpp (+5/-0) launcher/UnityApplications/launcheritem.h (+1/-0) launcher/UnityApplications/trash.cpp (+6/-0) launcher/UnityApplications/trash.h (+1/-0) |
To merge this branch: | bzr merge lp://staging/~ris/unity-2d/fix-729478 |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Aurélien Gâteau (community) | Approve | ||
Review via email: mp+55000@code.staging.launchpad.net |
Commit message
[launcher] Clicking middle mouse button now launches another instance of the application.
To post a comment you must log in.
Hi Robert,
Thanks for this patch, works well! I just have a few nitpicks:
- Indentation in launcher/ LauncherList. qml is wrong: it mixes tabs and spaces
- Since LauncherApplica tion::newInstan ce() just calls LauncherApplica tion::launch( ), it is simpler to just call launch(). You only have to make it a public slot.