summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2007-12-05 01:17:00 +0000
committerIain Holmes <iain@src.gnome.org>2007-12-05 01:17:00 +0000
commitb8b543540fe9dce61a1cf0c16999cb3ce5a92be4 (patch)
tree0feaef815a97a6d20c8e8ac738f4df2b2a16fe2f
parentf59bbc931c4489dcc2dbd5b88b9e65c5794efd3a (diff)
downloadmetacity-b8b543540fe9dce61a1cf0c16999cb3ce5a92be4.tar.gz
Fix the non compositor build
svn path=/branches/iains-blingtastic-bucket-o-bling/; revision=3452
-rw-r--r--src/screen.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/screen.c b/src/screen.c
index e6d30e76..8b155032 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -818,8 +818,10 @@ meta_screen_manage_all_windows (MetaScreen *screen)
&info->attrs);
if (info->xwindow == screen->no_focus_window ||
info->xwindow == screen->flash_window ||
- info->xwindow == screen->wm_sn_selection_window ||
- info->xwindow == screen->wm_cm_selection_window) {
+#ifdef HAVE_COMPOSITE_EXTENSIONS
+ info->xwindow == screen->wm_cm_selection_window ||
+#endif
+ info->xwindow == screen->wm_sn_selection_window) {
g_print ("Not managing our own windows\n");
continue;
}