From 6a93e105a2b8ae4140b292e019fb7a0524f223ed Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Wed, 11 Oct 2000 12:08:55 +0000 Subject: Fixed the parity on the cursor-mode check. 2000-10-11 Christopher James Lahey * e-table-specification.c: Fixed the parity on the cursor-mode check. svn path=/trunk/; revision=5847 --- widgets/table/e-table-specification.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'widgets/table') diff --git a/widgets/table/e-table-specification.c b/widgets/table/e-table-specification.c index d95c5147c8..f44212755b 100644 --- a/widgets/table/e-table-specification.c +++ b/widgets/table/e-table-specification.c @@ -119,7 +119,7 @@ e_table_specification_load_from_node (ETableSpecification *specification, specification->cursor_mode = E_TABLE_CURSOR_SIMPLE; temp = e_xml_get_string_prop_by_name(node, "cursor-mode"); - if (temp && strcasecmp(temp, "line")) { + if (temp && !strcasecmp(temp, "line")) { specification->cursor_mode = E_TABLE_CURSOR_LINE; } g_free(temp); -- cgit v1.2.3