From ee84fbb81fba845a044269c95a1ac3de8c90ad86 Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Sun, 3 Nov 2002 19:55:38 +0000 Subject: fix from Garrett LeSage for which button backgrounds we draw when 2002-11-03 Havoc Pennington * src/theme.c (meta_frame_layout_calc_geometry): fix from Garrett LeSage for which button backgrounds we draw when --- ChangeLog | 5 +++++ src/theme.c | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index ef33d481..7f98aa90 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-11-03 Havoc Pennington + + * src/theme.c (meta_frame_layout_calc_geometry): fix from Garrett + LeSage for which button backgrounds we draw when + 2002-11-03 Havoc Pennington * src/workspace.c (meta_workspace_get_name): new function, diff --git a/src/theme.c b/src/theme.c index 7edd181e..6f250904 100644 --- a/src/theme.c +++ b/src/theme.c @@ -576,9 +576,9 @@ meta_frame_layout_calc_geometry (const MetaFrameLayout *layout, while (i < n_left) { if (i == 0) /* prefer left background if only one button */ - left_bg_rects[i] = &fgeom->left_right_background; - else if (i == (n_left - 1)) left_bg_rects[i] = &fgeom->left_left_background; + else if (i == (n_left - 1)) + left_bg_rects[i] = &fgeom->left_right_background; else left_bg_rects[i] = &fgeom->left_middle_backgrounds[i-1]; @@ -589,9 +589,9 @@ meta_frame_layout_calc_geometry (const MetaFrameLayout *layout, while (i < n_right) { if (i == (n_right - 1)) /* prefer right background if only one button */ - right_bg_rects[i] = &fgeom->right_left_background; - else if (i == 0) right_bg_rects[i] = &fgeom->right_right_background; + else if (i == 0) + right_bg_rects[i] = &fgeom->right_left_background; else right_bg_rects[i] = &fgeom->right_middle_backgrounds[i-1]; -- cgit v1.2.1