summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-04-24 19:59:30 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-04-24 19:59:30 (GMT)
commite7652c0421672a7b13f4b659a48db7e96b334d17 (patch)
tree64031a1521220f0240fb95c9cf3ca94cb1c9d335
parent9d04b66153bd0b354c0fb5c097b9face61a649db (diff)
Disabled the not (yet) working docking system.
-rw-r--r--ChangeLog5
-rw-r--r--src/gtkext/gtkdockable.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a04b718..a7a149f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
16-04-24 Cyrille Bagard <nocbos@gmail.com>
+ * src/gtkext/gtkdockable.c:
+ Disable the not (yet) working docking system.
+
+16-04-24 Cyrille Bagard <nocbos@gmail.com>
+
* plugins/androhelpers/switch.c:
* src/analysis/disass/links.c:
Update code.
diff --git a/src/gtkext/gtkdockable.c b/src/gtkext/gtkdockable.c
index 98b1a04..0e3b493 100644
--- a/src/gtkext/gtkdockable.c
+++ b/src/gtkext/gtkdockable.c
@@ -543,9 +543,11 @@ void gtk_dockable_setup_dnd(GtkDockable *dockable)
widget = iface->get_widget(dockable);
+#if 0
gtk_drag_source_set(widget, GDK_BUTTON1_MASK,
target_list, G_N_ELEMENTS(target_list),
GDK_ACTION_MOVE);
+#endif
g_signal_connect_after(widget, "drag-begin", G_CALLBACK(on_dockable_drag_begin), NULL);