/android/export-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/export-contacts

« back to all changes in this revision

Viewing changes to src/org/waxworlds/edam/exportcontacts/FileChooser.java

  • Committer: edam
  • Date: 2010-10-30 09:56:26 UTC
  • Revision ID: edam@waxworlds.org-20101030095626-cavsscp5jukannwl
- fixed bug in file chooser where "ok" button could remain disabled

Show diffs side-by-side

added added

removed removed

409
409
                // enable/disable ok button
410
410
                if( _mode == MODE_FILE )
411
411
                        _dialog.findViewById( R.id.ok ).setEnabled( _filename != "" );
 
412
                else
 
413
                        _dialog.findViewById( R.id.ok ).setEnabled( true );
412
414
        }
413
415
 
414
416
}