Skip to content

Commit

Permalink
Merge pull request #774 from dingus9/fix-osx-select-all
Browse files Browse the repository at this point in the history
Fix OS X Select All Shortcut

Closes #665
  • Loading branch information
prikhi committed Dec 18, 2015
2 parents f17f08b + 5c536a7 commit 5e377ce
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/content/pencil/mainWindow.xul
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,8 @@
oncommand="Pencil.activeCanvas.doPaste();"/>
<command id="deleteSelectedCommand"
oncommand="Pencil.activeCanvas.deleteSelected();"/>
<command id="selectAllCommand"
oncommand="Pencil.activeCanvas.selectAll();"/>

<command id="groupCommand"
oncommand="Pencil.activeCanvas.doGroup();"/>
Expand Down Expand Up @@ -411,6 +413,7 @@
modifiers=""
keycode="VK_DELETE"/>
<key id="selectAllKey"
command="selectAllCommand"
modifiers="accel"
key="A"/>

Expand Down Expand Up @@ -605,7 +608,7 @@
<menuitem class="menuitem-iconic select-all-menu"
label="&menu.select.all.label;"
key="selectAllKey"
oncommand="Pencil.activeCanvas.selectAll();"/>
command="selectAllCommand"/>
</menupopup>
</menu>
<menu id="view-menu"
Expand Down

0 comments on commit 5e377ce

Please sign in to comment.