Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
epoc-editor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
GitLab upgrade completed. Current version is 17.11.3.
Show more breadcrumbs
learninglab
epoc
epoc-editor
Commits
84d783dd
Commit
84d783dd
authored
1 year ago
by
ROSPARS Benoit
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#232
: fix about window
parent
33df5711
Branches
Branches containing commit
Tags
v0.1.5-beta
Tags containing commit
No related merge requests found
Pipeline
#875124
passed
1 year ago
Stage: build
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
electron/components/menu.js
+6
-8
6 additions, 8 deletions
electron/components/menu.js
with
6 additions
and
8 deletions
electron/components/menu.js
+
6
−
8
View file @
84d783dd
...
@@ -9,7 +9,7 @@ module.exports.setupMenu = function () {
...
@@ -9,7 +9,7 @@ module.exports.setupMenu = function () {
{
{
label
:
'
App
'
,
label
:
'
App
'
,
submenu
:
[
submenu
:
[
{
label
:
'
À propos
'
,
selector
:
'
orderFrontStandardAboutPanel:
'
},
{
label
:
'
À propos
'
,
role
:
'
about
'
},
{
{
label
:
'
Nouvelle fenêtre
'
,
label
:
'
Nouvelle fenêtre
'
,
click
:
function
()
{
click
:
function
()
{
...
@@ -118,7 +118,6 @@ module.exports.setupMenu = function () {
...
@@ -118,7 +118,6 @@ module.exports.setupMenu = function () {
{
{
label
:
'
Undo
'
,
label
:
'
Undo
'
,
accelerator
:
'
CmdOrCtrl+Z
'
,
accelerator
:
'
CmdOrCtrl+Z
'
,
selector
:
'
undo:
'
,
click
:
function
()
{
click
:
function
()
{
sendToFrontend
(
BrowserWindow
.
getFocusedWindow
(),
'
undo
'
);
sendToFrontend
(
BrowserWindow
.
getFocusedWindow
(),
'
undo
'
);
}
}
...
@@ -126,16 +125,15 @@ module.exports.setupMenu = function () {
...
@@ -126,16 +125,15 @@ module.exports.setupMenu = function () {
{
{
label
:
'
Redo
'
,
label
:
'
Redo
'
,
accelerator
:
process
.
platform
===
'
darwin
'
?
'
Shift+CmdOrCtrl+Z
'
:
'
CmdOrCtrl+Y
'
,
accelerator
:
process
.
platform
===
'
darwin
'
?
'
Shift+CmdOrCtrl+Z
'
:
'
CmdOrCtrl+Y
'
,
selector
:
'
redo:
'
,
click
:
function
()
{
click
:
function
()
{
sendToFrontend
(
BrowserWindow
.
getFocusedWindow
(),
'
redo
'
);
sendToFrontend
(
BrowserWindow
.
getFocusedWindow
(),
'
redo
'
);
}
}
},
},
{
type
:
'
separator
'
},
{
type
:
'
separator
'
},
{
label
:
'
Cut
'
,
accelerator
:
'
CmdOrCtrl+X
'
,
selector
:
'
cut
:
'
},
{
label
:
'
Cut
'
,
accelerator
:
'
CmdOrCtrl+X
'
,
role
:
'
cut
'
},
{
label
:
'
Copy
'
,
accelerator
:
'
CmdOrCtrl+C
'
,
selector
:
'
copy
:
'
},
{
label
:
'
Copy
'
,
accelerator
:
'
CmdOrCtrl+C
'
,
role
:
'
copy
'
},
{
label
:
'
Paste
'
,
accelerator
:
'
CmdOrCtrl+V
'
,
selector
:
'
paste
:
'
},
{
label
:
'
Paste
'
,
accelerator
:
'
CmdOrCtrl+V
'
,
role
:
'
paste
'
},
{
label
:
'
Select All
'
,
accelerator
:
'
CmdOrCtrl+A
'
,
selector
:
'
selectAll
:
'
}
{
label
:
'
Select All
'
,
accelerator
:
'
CmdOrCtrl+A
'
,
role
:
'
selectAll
'
}
]
]
},
{
},
{
label
:
'
Aide
'
,
label
:
'
Aide
'
,
...
@@ -176,7 +174,7 @@ module.exports.setupMenuPreview = function () {
...
@@ -176,7 +174,7 @@ module.exports.setupMenuPreview = function () {
{
{
label
:
'
App
'
,
label
:
'
App
'
,
submenu
:
[
submenu
:
[
{
label
:
'
About Application
'
,
selector
:
'
orderFrontStandardAboutPanel:
'
},
{
label
:
'
About Application
'
,
role
:
'
about
'
},
{
{
label
:
'
Quit
'
,
label
:
'
Quit
'
,
accelerator
:
'
CmdOrCtrl+Q
'
,
accelerator
:
'
CmdOrCtrl+Q
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment