summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am1
-rw-r--r--src/tabpopup.c2
-rw-r--r--src/ui.c1
3 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index ea7ffe8e..eaf16f58 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -36,6 +36,7 @@ metacity_SOURCES= \
stack.c \
stack.h \
tabpopup.c \
+ tabpopup.h \
ui.c \
ui.h \
util.c \
diff --git a/src/tabpopup.c b/src/tabpopup.c
index 47edfba9..08c4ac7f 100644
--- a/src/tabpopup.c
+++ b/src/tabpopup.c
@@ -169,7 +169,7 @@ meta_ui_tab_popup_new (const MetaTabEntry *entries)
gtk_container_add (GTK_CONTAINER (frame),
vbox);
- align = gtk_alignment_new (0.5, 0.5, 1.0, 1.0);
+ align = gtk_alignment_new (0.5, 0.5, 0.0, 0.0);
gtk_box_pack_start (GTK_BOX (vbox), align, TRUE, TRUE, 0);
diff --git a/src/ui.c b/src/ui.c
index 7dd50e80..8382bca7 100644
--- a/src/ui.c
+++ b/src/ui.c
@@ -23,6 +23,7 @@
#include "frames.h"
#include "util.h"
#include "menu.h"
+#include "core.h"
struct _MetaUI
{