fix #416, do not show a notepicker on startup if we have only 1 note

This commit is contained in:
tibbi 2021-05-20 20:03:35 +02:00
parent 7a52d3e539
commit bd4447fa09

View File

@ -1000,6 +1000,10 @@ class MainActivity : SimpleActivity() {
}
}
}
if (it.size == 1 && config.showNotePicker) {
config.showNotePicker = false
}
}
}