Skip to content

Commit c1527af

Browse files
committedFeb 15, 2013
also fix loading checkbox state from settings
1 parent af7d512 commit c1527af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/providers/delimitedtext/qgsdelimitedtextsourceselect.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ QgsDelimitedTextSourceSelect::QgsDelimitedTextSourceSelect( QWidget * parent, Qt
6868

6969
QString delimiterChars = settings.value( key + "/delimiterChars", " " ).toString();
7070
cbxDelimSpace->setChecked( delimiterChars.contains( " " ) );
71-
cbxDelimTab->setChecked( delimiterChars.contains( "\\t" ) );
71+
cbxDelimTab->setChecked( delimiterChars.contains( "\t" ) );
7272
cbxDelimColon->setChecked( delimiterChars.contains( ":" ) );
7373
cbxDelimSemicolon->setChecked( delimiterChars.contains( ";" ) );
7474
cbxDelimComma->setChecked( delimiterChars.contains( "," ) );

0 commit comments

Comments
 (0)
Please sign in to comment.