From 501dd26713773576dc7f0b334ac4121477ff64bc Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Fri, 31 Aug 2001 06:13:07 +0000 Subject: fix args to gtk_alignment_new() 2001-08-31 Havoc Pennington * src/tabpopup.c (meta_ui_tab_popup_new): fix args to gtk_alignment_new() --- ChangeLog | 5 +++++ README | 18 +++++------------- src/Makefile.am | 1 + src/tabpopup.c | 2 +- src/ui.c | 1 + 5 files changed, 13 insertions(+), 14 deletions(-) diff --git a/ChangeLog b/ChangeLog index bc8bf05bc..da3bc48ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-08-31 Havoc Pennington + + * src/tabpopup.c (meta_ui_tab_popup_new): fix args to + gtk_alignment_new() + 2001-08-29 Havoc Pennington * src/display.c (event_callback): avoid focusing a window on tab diff --git a/README b/README index facbafc35..e3711a0c5 100644 --- a/README +++ b/README @@ -127,6 +127,9 @@ METACITY FEATURES to help users see what is happening. Should probably have a few more of these. + - if you have the proper X setup, set the GDK_USE_XFT=1 + environment variable to get antialiased window titles. + METACITY BUGS, NON-FEATURES, AND CAVEATS === @@ -194,15 +197,6 @@ METACITY BUGS, NON-FEATURES, AND CAVEATS - Should support click-to-focus as an option. - - With Alt+Tab, if the mouse pointer is over the tab popup window, - when the tab popup window closes the window under the pointer will get - an enter event and thus take the focus, instead of the window you - just tabbed to. - - - The focus rectangle around the icons in the Alt-Tab popup - is ugly, should use a GTK-like focus rectangle, or maybe - make it look selected, not sure. - - Should Metacity support flipping in right-to-left locales? I don't know what window managers look like in a right-to-left locale. I assume the window titles should be right-justified; @@ -257,10 +251,8 @@ METACITY BUGS, NON-FEATURES, AND CAVEATS setting the new non-legacy type hint, but a panel with that patch hasn't been released yet. - - The minimize/shade animation leaves "dirt" on Metacity's own frames, - because Metacity handles exposes on its own frames during the - animation. We could fix this with a horrible GDK hack of some kind. - I'm not sure of the best way yet. + - If you run a GLX/DRI 3D game or application, Metacity will + crash, for reasons I do not yet understand. FAQ === diff --git a/src/Makefile.am b/src/Makefile.am index ea7ffe8e3..eaf16f583 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 47edfba95..08c4ac7ff 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 7dd50e802..8382bca71 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 { -- cgit v1.2.1