summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/gtk-shell.c6
-rw-r--r--shell/panel.h1
2 files changed, 2 insertions, 5 deletions
diff --git a/shell/gtk-shell.c b/shell/gtk-shell.c
index e38abe9..36f059a 100644
--- a/shell/gtk-shell.c
+++ b/shell/gtk-shell.c
@@ -44,10 +44,6 @@ struct desktop {
guint hide_panel_idle_id;
};
-/* TODO: guessed from the mockups, it'd be nice to have this in stone
- * somewhere. */
-#define PANEL_HEIGHT_RATIO 0.73
-
static gboolean panel_window_enter_cb (GtkWidget *widget,
GdkEventCrossing *event,
struct desktop *desktop);
@@ -91,7 +87,7 @@ desktop_shell_configure(void *data,
width - 56, height);
/* TODO: make this height a little nicer */
- window_height = height * PANEL_HEIGHT_RATIO;
+ window_height = height * WESTON_GTK_PANEL_HEIGHT_RATIO;
gtk_window_resize (GTK_WINDOW (desktop->panel->window),
WESTON_GTK_PANEL_WIDTH, window_height);
diff --git a/shell/panel.h b/shell/panel.h
index 8af5fd7..ac3b250 100644
--- a/shell/panel.h
+++ b/shell/panel.h
@@ -33,6 +33,7 @@ struct WestonGtkPanelClass
};
#define WESTON_GTK_PANEL_WIDTH 56
+#define WESTON_GTK_PANEL_HEIGHT_RATIO 0.73
GType weston_gtk_panel_get_type (void) G_GNUC_CONST;