summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/gtk-shell.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/shell/gtk-shell.c b/shell/gtk-shell.c
index 76332b3..278dab6 100644
--- a/shell/gtk-shell.c
+++ b/shell/gtk-shell.c
@@ -85,15 +85,8 @@ desktop_shell_configure(void *data,
gtk_widget_set_size_request (desktop->background->window,
width, height);
- /* Not sure where this '28' comes from, but it seems to work...
- * The issue here is that the bottom of the grid (after scrolling
- * all the way down) gets cut. That is because the window is a
- * bit bigger than it should, but logic tells me we should only
- * substract 16px from the height (those we're giving to the panel),
- * but maybe I'm missing something...
- */
gtk_widget_set_size_request (desktop->launcher_grid->window,
- width, height - 28);
+ width - 56, height);
/* TODO: make this height a little nicer */
window_height = height * PANEL_HEIGHT_RATIO;