From e34a6d760611b99287034db1d4ea9a2ad165f266 Mon Sep 17 00:00:00 2001 From: Mikkel Kruse Johnsen Date: Fri, 4 Sep 2015 13:21:17 +0200 Subject: [PATCH] Return false if no border set --- sample/CustomScrollableWidget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample/CustomScrollableWidget.cs b/sample/CustomScrollableWidget.cs index 41bd52a4d..efd887de7 100644 --- a/sample/CustomScrollableWidget.cs +++ b/sample/CustomScrollableWidget.cs @@ -217,6 +217,6 @@ class CustomScrollableWidget : CustomBase, IScrollable { public bool GetBorder(Gtk.Border border) { - return true; + return false; } }