1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
namespace Tomboy
{
public class RecentTreeView : Gtk.TreeView
{
public RecentTreeView()
{
}
protected override void OnDragBegin (Gdk.DragContext ctx)
{
// Block Gtk.TreeView so multi selection dnd works
}
}
}
|