Skip to content

Commit

Permalink
Add sublime icon to ttf and in dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr committed Jul 26, 2023
1 parent 5bcb82e commit 3f4c35b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/gui/icon/IconTheme.java
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ public enum JabRefIcons implements JabRefIcon {
APPLICATION_TEXMAKER(JabRefMaterialDesignIcon.TEX_MAKER),
APPLICATION_VIM(JabRefMaterialDesignIcon.VIM),
APPLICATION_WINEDT(JabRefMaterialDesignIcon.WINEDT),
APPLICATION_SUBLIMETEXT(MaterialDesignA.APPLICATION),
APPLICATION_SUBLIMETEXT(JabRefMaterialDesignIcon.SUBLIME_TEXT),
KEY_BINDINGS(MaterialDesignK.KEYBOARD),
FIND_DUPLICATES(MaterialDesignC.CODE_EQUAL),
CONNECT_DB(MaterialDesignC.CLOUD_UPLOAD),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ public enum JabRefMaterialDesignIcon implements Ikon {
SET_CENTER("jab-setcenter", '\ue90b'),
SET_ALL("jab-setall", '\ue90c'),
VSCODE("jab-vsvode", '\ue90d'),
CANCEL("jab-cancel", '\ue90e');
CANCEL("jab-cancel", '\ue90e'),
SUBLIME_TEXT("jab-sublime-text", '\ue90f');

private String description;
private int code;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/gui/push/PushToSublimeText.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public void pushEntries(BibDatabaseContext database, List<BibEntry> entries, Str
}
try {

LOGGER.info("Sublime string: {}", String.join(" ", getCommandLine(keyString)));
LOGGER.debug("Sublime string: {}", String.join(" ", getCommandLine(keyString)));
ProcessBuilder processBuilder = new ProcessBuilder(getCommandLine(keyString));
processBuilder.inheritIO();
Map<String, String> envs = processBuilder.environment();
Expand Down
Binary file modified src/main/resources/fonts/JabRefMaterialDesign.ttf
Binary file not shown.

0 comments on commit 3f4c35b

Please sign in to comment.