diff --git a/ogl_editor/src/Editor.c b/ogl_editor/src/Editor.c index 55da962..c517d7a 100644 --- a/ogl_editor/src/Editor.c +++ b/ogl_editor/src/Editor.c @@ -1301,6 +1301,7 @@ void Editor_menuEvent(int menuItem) case EDITOR_MENU_OPEN : onOpen(); break; case EDITOR_MENU_SAVE : onSave(); break; case EDITOR_MENU_SAVE_AS : onSaveDialog(); break; + case EDITOR_MENU_REMOTE_EXPORT : RemoteConnection_sendSaveCommand(); break; } } diff --git a/ogl_editor/src/Editor.h b/ogl_editor/src/Editor.h index 859d439..ec579fd 100644 --- a/ogl_editor/src/Editor.h +++ b/ogl_editor/src/Editor.h @@ -24,6 +24,7 @@ enum EDITOR_MENU_OPEN, EDITOR_MENU_SAVE, EDITOR_MENU_SAVE_AS, + EDITOR_MENU_REMOTE_EXPORT, }; enum