diff options
author | Nikias Bassen | 2009-12-21 17:51:29 +0100 |
---|---|---|
committer | Nikias Bassen | 2009-12-21 17:51:29 +0100 |
commit | f9750383a70d85361ee32a6bcbf73a1fb630e4c5 (patch) | |
tree | 1280add0dc2bfcbfd45da819d127dd2efe5b2d7b /src | |
parent | c23e078c9ab974595b16ee4d519a1ec860ef3904 (diff) | |
download | sbmanager-f9750383a70d85361ee32a6bcbf73a1fb630e4c5.tar.gz sbmanager-f9750383a70d85361ee32a6bcbf73a1fb630e4c5.tar.bz2 |
Made check for motion in dock_area only y-axis dependant.
This prevents icons being detected 'outside the dock' when they are moved
across the left, right, or bottom margin of the dock area.
Diffstat (limited to 'src')
-rw-r--r-- | src/sbmanager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sbmanager.c b/src/sbmanager.c index 4394ebd..07b639f 100644 --- a/src/sbmanager.c +++ b/src/sbmanager.c @@ -587,7 +587,7 @@ static gboolean stage_motion (ClutterActor *actor, ClutterMotionEvent *event, gp actor_get_abs_center(clutter_actor_get_parent(selected_item->texture), ¢er_x, ¢er_y); if (selected_item->is_dock_item) { - if (clutter_actor_box_contains(&dock_area, center_x, center_y)) { + if (center_y >= dock_area.y1) { printf("icon from dock moving inside the dock!\n"); GList *found = g_list_find(dockitems, selected_item); if (!found) { @@ -599,7 +599,7 @@ static gboolean stage_motion (ClutterActor *actor, ClutterMotionEvent *event, gp } dock_align_icons(TRUE); } else { - if (clutter_actor_box_contains(&dock_area, center_x, center_y)) { + if (center_y >= dock_area.y1) { printf("regular icon is moving inside the dock!\n"); } else { printf("regular icon is moving!\n"); |