mirror of
https://github.com/brl/mutter.git
synced 2025-06-13 16:59:30 +00:00
Fix typo where wrong variable was checked (reported by Kjartan Maraas).
2007-12-08 Martin Meyer <elreydetodo@gmail.com> * src/theme-parser.c (parse_draw_op_element): Fix typo where wrong variable was checked (reported by Kjartan Maraas). Closes #501362. svn path=/trunk/; revision=3462
This commit is contained in:

committed by
Thomas James Alexander Thurman

parent
2891388813
commit
71c83da805
@ -3182,7 +3182,7 @@ parse_draw_op_element (GMarkupParseContext *context,
|
||||
if (tile_xoffset && !check_expression (tile_xoffset, FALSE, info->theme, context, error))
|
||||
return;
|
||||
|
||||
if (tile_yoffset && !check_expression (tile_xoffset, FALSE, info->theme, context, error))
|
||||
if (tile_yoffset && !check_expression (tile_yoffset, FALSE, info->theme, context, error))
|
||||
return;
|
||||
|
||||
/* x/y/width/height default to 0,0,width,height - should
|
||||
|
Reference in New Issue
Block a user