Elementary genlist: Indentation fix for reorder patch.

SVN revision: 60110
This commit is contained in:
Daniel Juyung Seo 2011-06-09 02:54:04 +00:00
parent 5f1d8a6201
commit 6c68857b0e
1 changed files with 12 additions and 12 deletions

View File

@ -2415,18 +2415,18 @@ _item_block_position(Item_Block *itb,
}
}
if (!it->move_effect_enabled)
{
{
if (it->mode_view)
_item_position(it, it->mode_view, it->scrl_x,
it->scrl_y);
else
_item_position(it, it->base.view, it->scrl_x,
it->scrl_y);
}
it->old_scrl_x = it->scrl_x;
it->old_scrl_y = it->scrl_y;
}
{
{
if (it->mode_view)
_item_position(it, it->mode_view, it->scrl_x,
it->scrl_y);
else
_item_position(it, it->base.view, it->scrl_x,
it->scrl_y);
}
it->old_scrl_x = it->scrl_x;
it->old_scrl_y = it->scrl_y;
}
}
else
{