[tomboy] Remove the minimal height and width requests for the "Search all" dialog



commit bac2287be5ccfa88cff176005a1fe0bef263796e
Author: Benjamin Podszun <benjamin podszun topimagesystems com>
Date:   Wed Aug 4 16:42:28 2010 +0200

    Remove the minimal height and width requests for the "Search all" dialog
    
    Signed-off-by: Aaron Borden <adborden live com>

 Tomboy/RecentChanges.cs |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)
---
diff --git a/Tomboy/RecentChanges.cs b/Tomboy/RecentChanges.cs
index 6d847f0..7228971 100644
--- a/Tomboy/RecentChanges.cs
+++ b/Tomboy/RecentChanges.cs
@@ -161,15 +161,6 @@ namespace Tomboy
 			matches_window = new Gtk.ScrolledWindow ();
 			matches_window.ShadowType = Gtk.ShadowType.In;
 
-			// Reign in the window size if there are notes with long
-			// names, or a lot of notes...
-			Gtk.Requisition tree_req = tree.SizeRequest ();
-			if (tree_req.Height > 420)
-				matches_window.HeightRequest = 420;
-
-			if (tree_req.Width > 480)
-				matches_window.WidthRequest = 480;
-
 			matches_window.HscrollbarPolicy = Gtk.PolicyType.Automatic;
 			matches_window.VscrollbarPolicy = Gtk.PolicyType.Automatic;
 			matches_window.Add (tree);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]