fix from Garrett LeSage for which button backgrounds we draw when
2002-11-03 Havoc Pennington <hp@pobox.com> * src/theme.c (meta_frame_layout_calc_geometry): fix from Garrett LeSage for which button backgrounds we draw when
This commit is contained in:
parent
6a1abc7482
commit
ee84fbb81f
@ -1,3 +1,8 @@
|
||||
2002-11-03 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* src/theme.c (meta_frame_layout_calc_geometry): fix from Garrett
|
||||
LeSage for which button backgrounds we draw when
|
||||
|
||||
2002-11-03 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* src/workspace.c (meta_workspace_get_name): new function,
|
||||
|
@ -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];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user