theme: Properly indent code

s/tabs/spaces/

https://bugzilla.gnome.org/show_bug.cgi?id=662962
This commit is contained in:
Jasper St. Pierre
2012-03-01 00:59:06 -05:00
parent 43e7687d89
commit 307e4c7d0e

View File

@@ -917,7 +917,6 @@ meta_frame_layout_calc_geometry (const MetaFrameLayout *layout,
else else
g_memmove (&(rect->clickable), &(rect->visible), sizeof(rect->clickable)); g_memmove (&(rect->clickable), &(rect->visible), sizeof(rect->clickable));
x = rect->visible.x + rect->visible.width + layout->button_border.right; x = rect->visible.x + rect->visible.width + layout->button_border.right;
if (left_buttons_has_spacer[i]) if (left_buttons_has_spacer[i])
x += (button_width * 0.75); x += (button_width * 0.75);
@@ -3972,8 +3971,7 @@ meta_draw_op_draw_with_env (const MetaDrawOp *op,
d_rect.height = parse_size_unchecked (op->data.op_list.height, env); d_rect.height = parse_size_unchecked (op->data.op_list.height, env);
meta_draw_op_list_draw_with_style (op->data.op_list.op_list, meta_draw_op_list_draw_with_style (op->data.op_list.op_list,
style_gtk, cr, info, style_gtk, cr, info, d_rect);
d_rect);
} }
break; break;
@@ -4010,8 +4008,7 @@ meta_draw_op_draw_with_env (const MetaDrawOp *op,
while (tile.y < (ry + rheight)) while (tile.y < (ry + rheight))
{ {
meta_draw_op_list_draw_with_style (op->data.tile.op_list, meta_draw_op_list_draw_with_style (op->data.tile.op_list,
style_gtk, cr, info, style_gtk, cr, info, tile);
tile);
tile.y += tile.height; tile.y += tile.height;
} }