diff options
| -rw-r--r-- | unity-private/launcher/scroller-controller.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unity-private/launcher/scroller-controller.vala b/unity-private/launcher/scroller-controller.vala index 493c5482a..332fb4600 100644 --- a/unity-private/launcher/scroller-controller.vala +++ b/unity-private/launcher/scroller-controller.vala @@ -351,7 +351,7 @@ namespace Unity.Launcher // if the actor is not in the model, add it. because its now in there! // find the index at this position - int model_index = view.get_model_index_at_y_pos_no_anim (y, true); + int model_index = view.get_model_index_at_y_pos_no_anim (y - 24, true); if (model_index < 0) return; //we have to check to see if we would still be over the index |
