-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Select lines #2443
base: master
Are you sure you want to change the base?
Select lines #2443
Conversation
@@ -411,8 +411,7 @@ public GsFileBrowserOptions.Options getFilesystemFragmentOptions(GsFileBrowserOp | |||
public void onFsViewerConfig(GsFileBrowserOptions.Options dopt) { | |||
dopt.descModtimeInsteadOfParent = true; | |||
dopt.rootFolder = _appSettings.getNotebookDirectory(); | |||
final File fallback = _appSettings.getFolderToLoadByMenuId(_appSettings.getAppStartupFolderMenuId()); | |||
final File file = MarkorContextUtils.getValidIntentFile(getIntent(), fallback); | |||
final File file = MarkorContextUtils.getValidIntentFile(getIntent(), dopt.rootFolder); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does Markor still startup with i.e. Favorites or storage if you select that in the filebrowser app settings?
Might I suggest a unicode symbol instead of text? I know already that translating those two words will result in what you would consider a sentence. And you want to have more then just this option listed 😄 |
} | ||
} | ||
_lastFilter = constraint.toString().toLowerCase().trim(); | ||
_filter(_originalList, _filteredList); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we don't want to run an async filter inside load folder as it is already async. So we break the internal processing out into a stand-alone function
This adds an option to select lines which pops up in the long press menu in the text editor. The menu remains open so we can easily copy or replace selections.