1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-23 22:36:32 +02:00

Mobile: Resolves #10374: Add more options when long pressing the icon on mobile (#11517)

This commit is contained in:
Laurent Cozic
2024-12-16 10:49:46 +01:00
committed by GitHub
parent dc96811940
commit 3983a3a52f
9 changed files with 116 additions and 28 deletions

View File

@@ -1,7 +1,6 @@
import { defaultState } from '@joplin/lib/reducer';
import { AppState } from './types';
export const DEFAULT_ROUTE = {
type: 'NAV_GO',
routeName: 'Notes',
@@ -10,7 +9,6 @@ export const DEFAULT_ROUTE = {
const appDefaultState: AppState = {
smartFilterId: undefined,
...defaultState,
keyboardVisible: false,
route: DEFAULT_ROUTE,
noteSelectionEnabled: false,
@@ -18,5 +16,7 @@ const appDefaultState: AppState = {
isOnMobileData: false,
disableSideMenuGestures: false,
showPanelsDialog: false,
newNoteAttachFileAction: null,
...defaultState,
};
export default appDefaultState;