[gnome-shell] lookingGlass: Fix spacing and line appearance



commit 0792f8d4a3b219e6f1ee766a4d16bffe1123d495
Author: Colin Walters <walters verbum org>
Date:   Mon Aug 3 20:21:07 2009 -0400

    lookingGlass: Fix spacing and line appearance

 js/ui/lookingGlass.js |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/js/ui/lookingGlass.js b/js/ui/lookingGlass.js
index cba5920..337a519 100644
--- a/js/ui/lookingGlass.js
+++ b/js/ui/lookingGlass.js
@@ -63,9 +63,9 @@ Result.prototype = {
                                            ellipsize: Pango.EllipsizeMode.END,
                                            text: "r(" + index + ") = " + o });
         this.actor.append(resultTxt, Big.BoxPackFlags.NONE);
-        let line = new Big.Box({ opacity: 0, border_color: GREY,
-                                border_bottom: 1,
-                                height: 4 });
+        let line = new Big.Box({ border_color: GREY,
+                                 border_bottom: 1,
+                                 height: 8 });
         this.actor.append(line, Big.BoxPackFlags.NONE);
     }
 }
@@ -264,7 +264,7 @@ LookingGlass.prototype = {
         this.actor.append(this._mainContent, Big.BoxPackFlags.EXPAND);
 
         this._resultsArea = new Big.Box({ orientation: Big.BoxOrientation.VERTICAL,
-                                        spacing: 0 });
+                                          spacing: 4 });
         this._mainContent.append(this._resultsArea, Big.BoxPackFlags.EXPAND);
 
         let entryArea = new Big.Box({ orientation: Big.BoxOrientation.HORIZONTAL });



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