mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-03 18:21:05 +02:00
couple changes to saving notes
This commit is contained in:
parent
6bcf53b771
commit
1870033aab
@ -39,7 +39,7 @@ public class Config {
|
||||
}
|
||||
|
||||
public int getCurrentNoteId() {
|
||||
return mPrefs.getInt(Constants.CURRENT_NOTE_ID, 0);
|
||||
return mPrefs.getInt(Constants.CURRENT_NOTE_ID, 1);
|
||||
}
|
||||
|
||||
public void setCurrentNoteId(int id) {
|
||||
|
@ -115,12 +115,12 @@ public class MainActivity extends SimpleActivity implements OpenNoteDialog.OpenN
|
||||
private void updateSelectedNote(int id) {
|
||||
saveText();
|
||||
mCurrentNote = mDb.getNote(id);
|
||||
if (mCurrentNote == null)
|
||||
return;
|
||||
|
||||
mConfig.setCurrentNoteId(id);
|
||||
mNotesView.setText(mCurrentNote.getValue());
|
||||
mCurrNoteTitle.setText(mCurrentNote.getTitle());
|
||||
mNotes = mDb.getNotes();
|
||||
if (mCurrentNote != null) {
|
||||
mConfig.setCurrentNoteId(id);
|
||||
mNotesView.setText(mCurrentNote.getValue());
|
||||
mCurrNoteTitle.setText(mCurrentNote.getTitle());
|
||||
}
|
||||
|
||||
mCurrNoteLabel.setVisibility(mNotes.size() <= 1 ? View.GONE : View.VISIBLE);
|
||||
mCurrNoteTitle.setVisibility(mNotes.size() <= 1 ? View.GONE : View.VISIBLE);
|
||||
|
Loading…
x
Reference in New Issue
Block a user