Skip to content

Commit

Permalink
fix: "E"
Browse files Browse the repository at this point in the history
also change icon for sending files
  • Loading branch information
Mara-Li committed May 28, 2024
1 parent 0ff4a46 commit a0b9f65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/commands/file_menu/file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function addMenuFile(

if (allKeysFromFile.length > 1 || (prop instanceof Array && prop.length > 1)) {
if (Platform.isDesktop) {
item.setTitle("Enveloppe").setIcon("upload-cloud");
item.setTitle("Enveloppe").setIcon("mail-open");
} else {
//add the line to separate the commands
menu.addSeparator();
Expand Down
4 changes: 2 additions & 2 deletions src/commands/file_menu/folder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ export async function addMenuFolder(
const areTheyMultipleRepo = plugin.settings.github?.otherRepo?.length > 0;
if (areTheyMultipleRepo) {
if (Platform.isDesktop) {
item.setTitle("E");
item.setIcon("upload-cloud");
item.setTitle("Enveloppe");
item.setIcon("mail-open");
} else {
//add the line to separate the commands
menu.addSeparator();
Expand Down

0 comments on commit a0b9f65

Please sign in to comment.