Skip to content

Commit

Permalink
also fix loading checkbox state from settings
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Feb 15, 2013
1 parent af7d512 commit c1527af
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -68,7 +68,7 @@ QgsDelimitedTextSourceSelect::QgsDelimitedTextSourceSelect( QWidget * parent, Qt

QString delimiterChars = settings.value( key + "/delimiterChars", " " ).toString();
cbxDelimSpace->setChecked( delimiterChars.contains( " " ) );
cbxDelimTab->setChecked( delimiterChars.contains( "\\t" ) );
cbxDelimTab->setChecked( delimiterChars.contains( "\t" ) );
cbxDelimColon->setChecked( delimiterChars.contains( ":" ) );
cbxDelimSemicolon->setChecked( delimiterChars.contains( ";" ) );
cbxDelimComma->setChecked( delimiterChars.contains( "," ) );
Expand Down

0 comments on commit c1527af

Please sign in to comment.