Fix up confusing formatting

svn path=/trunk/netsurf/; revision=10586
This commit is contained in:
Vincent Sanders 2010-06-28 11:31:51 +00:00
parent 73d73eee27
commit bd6c884020
1 changed files with 2 additions and 2 deletions

View File

@ -606,11 +606,11 @@ void tree_handle_selection_area(struct tree *tree, int x, int y, int width, int
if (width < 0) {
x += width;
width =- width;
width = -width;
}
if (height < 0) {
y += height;
height =- height;
height = -height;
}
tree_handle_selection_area_node(tree, tree->root->child, x, y, width, height, invert);