From ecd838bf01ca61d4767b0d171ca9d7954553f93b Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Mon, 25 Feb 2013 14:53:50 -0500 Subject: [PATCH] lookingGlass: Remove an unused separator between results At one time, this may have had styling, but it's not there now, and I don't see a reason to add it back. https://bugzilla.gnome.org/show_bug.cgi?id=699975 --- js/ui/lookingGlass.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/js/ui/lookingGlass.js b/js/ui/lookingGlass.js index 718942eb8..d81d442f5 100644 --- a/js/ui/lookingGlass.js +++ b/js/ui/lookingGlass.js @@ -308,10 +308,6 @@ const Result = new Lang.Class({ box.add(resultTxt); let objLink = new ObjLink(this._lookingGlass, o); box.add(objLink.actor); - let line = new Clutter.Rectangle({ name: 'Separator' }); - let padBin = new St.Bin({ name: 'Separator', x_fill: true, y_fill: true }); - padBin.add_actor(line); - this.actor.add(padBin); } });