1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-05 12:50:29 +02:00
joplin/ElectronClient/gui/MainScreen/commands/toggleVisiblePanes.ts

21 lines
501 B
TypeScript
Raw Normal View History

import { CommandDeclaration, CommandRuntime } from 'lib/services/CommandService';
import { _ } from 'lib/locale';
export const declaration:CommandDeclaration = {
name: 'toggleVisiblePanes',
label: () => _('Toggle editor layout'),
2020-09-15 15:01:07 +02:00
iconName: 'icon-layout ',
};
export const runtime = (comp:any):CommandRuntime => {
return {
execute: async () => {
comp.props.dispatch({
type: 'NOTE_VISIBLE_PANES_TOGGLE',
});
},
enabledCondition: 'markdownEditorVisible && oneNoteSelected',
};
};