[gnome-todo/wip/gbsneto/subtasks] dnd-row: improve the behavior when moving DnD
- From: Georges Basile Stavracas Neto <gbsneto src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-todo/wip/gbsneto/subtasks] dnd-row: improve the behavior when moving DnD
- Date: Fri, 14 Oct 2016 13:26:11 +0000 (UTC)
commit 3183dc37aa942440c1b2b2f2a41cc8a68ca333f9
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date: Fri Oct 14 01:50:06 2016 -0300
dnd-row: improve the behavior when moving DnD
src/gtd-dnd-row.c | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
---
diff --git a/src/gtd-dnd-row.c b/src/gtd-dnd-row.c
index d6aa245..a8f8077 100644
--- a/src/gtd-dnd-row.c
+++ b/src/gtd-dnd-row.c
@@ -28,6 +28,7 @@ struct _GtdDndRow
{
GtkListBoxRow parent;
+ GtkWidget *box;
GtkWidget *icon;
GtdTaskRow *row_above;
@@ -140,9 +141,13 @@ gtd_dnd_row_drag_motion (GtkWidget *widget,
if (self->row_above)
{
GtdTask *task;
+ gint offset;
task = gtd_task_row_get_task (self->row_above);
- self->depth = CLAMP (floor (x / 32), 0, gtd_task_get_depth (task) + 1);
+ offset = gtk_widget_get_margin_start (self->box) + gtk_widget_get_allocated_width (self->icon) + 12;
+ self->depth = CLAMP (floor ((x - offset) / 32),
+ 0,
+ gtd_task_get_depth (task) + 1);
}
else
{
@@ -259,6 +264,7 @@ gtd_dnd_row_class_init (GtdDndRowClass *klass)
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/todo/ui/dnd-row.ui");
+ gtk_widget_class_bind_template_child (widget_class, GtdDndRow, box);
gtk_widget_class_bind_template_child (widget_class, GtdDndRow, icon);
gtk_widget_class_set_css_name (widget_class, "dndrow");
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]