aricneto / TwistyTimer

Twisty Timer is a material design twisty puzzle timer for Android. It uses the TNoodle library to generate scramble sequences for all current official speedsolving puzzles.
GNU General Public License v3.0
242 stars 54 forks source link

Ignore branch name #64

Closed aricneto closed 8 years ago

aricneto commented 8 years ago

Fixed bug where times were not being imported after choosing a file. The onFileSelection callback on MainActivity was trying to get the ExportImportDialog that called FileChooserDialog by using getTag, but both the ExportImportDialog and FileChooserDialog have the same tag (export_import_dialog). The fix was to have ExportImportDialog create a FileChooserDialog with a different tag. Temporarily changed the way the AverageCalculator handles an exception in the addTime function. See the FIXME note for reasoning.