Merge lp:~gordallott/unity/place-activation-on-return into lp:unity

Proposed by Gord Allott
Status: Merged
Merged at revision: 1007
Proposed branch: lp:~gordallott/unity/place-activation-on-return
Merge into: lp:unity
Diff against target: 13 lines (+1/-2)
1 file modified
src/PlacesGroupController.cpp (+1/-2)
To merge this branch: bzr merge lp:~gordallott/unity/place-activation-on-return
Reviewer Review Type Date Requested Status
Didier Roche-Tolomelli Approve
Review via email: mp+54574@code.launchpad.net

Description of the change

So it turns out place activation on return never actually worked, it was just a fluke of bugs that made it look like it used to work, once those bugs got fixed - it stopped "working".

This makes it actually work ;)

To post a comment you must log in.
Revision history for this message
Didier Roche-Tolomelli (didrocks) wrote :

that's just, awesome! :)

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'src/PlacesGroupController.cpp'
--- src/PlacesGroupController.cpp 2011-03-17 09:30:07 +0000
+++ src/PlacesGroupController.cpp 2011-03-23 18:01:42 +0000
@@ -235,8 +235,7 @@
235235
236 if (tile)236 if (tile)
237 {237 {
238 nux::Geometry geo = tile->GetGeometry ();238 tile->sigClick.emit (tile);
239 tile->OnMouseClick.emit (geo.x, geo.y, 0, 0);
240 return true;239 return true;
241 }240 }
242 }241 }