diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css index dc9a006b1..09b692ac5 100644 --- a/data/theme/gnome-shell.css +++ b/data/theme/gnome-shell.css @@ -1199,7 +1199,8 @@ StScrollBar StButton#vhandle:active { spacing: 4px; padding: 4px; border: 2px solid grey; - border-radius: 4px; + border-top-width: 0; + border-radius: 0 0 4px 4px; } #LookingGlassDialog > #Toolbar { diff --git a/js/ui/lookingGlass.js b/js/ui/lookingGlass.js index 93747ec1c..7dd8bd1c0 100644 --- a/js/ui/lookingGlass.js +++ b/js/ui/lookingGlass.js @@ -1040,7 +1040,7 @@ const LookingGlass = new Lang.Class({ let availableHeight = primary.height - Main.layoutManager.keyboardBox.height; let myHeight = Math.min(primary.height * 0.7, availableHeight * 0.9); this.actor.x = primary.x + (primary.width - myWidth) / 2; - this._hiddenY = primary.y + Main.layoutManager.panelBox.height - myHeight - 4; // -4 to hide the top corners + this._hiddenY = primary.y + Main.layoutManager.panelBox.height - myHeight; this._targetY = this._hiddenY + myHeight; this.actor.y = this._hiddenY; this.actor.width = myWidth;