We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2296ec commit 0f79bc1Copy full SHA for 0f79bc1
app/src/main/kotlin/com/simplemobiletools/notes/pro/fragments/NoteFragment.kt
@@ -195,7 +195,8 @@ class NoteFragment : androidx.fragment.app.Fragment() {
195
} else {
196
val currentText = getCurrentNoteViewText()
197
if (currentText != null) {
198
- (activity as? MainActivity)?.exportNoteValueToFile(note.path, currentText, false)
+ val displaySuccess = activity?.config?.displaySuccess ?: false
199
+ (activity as? MainActivity)?.exportNoteValueToFile(note.path, currentText, displaySuccess)
200
}
201
202
0 commit comments