Skip to content

Commit

Permalink
remove emoji css trazyn#29
Browse files Browse the repository at this point in the history
  • Loading branch information
trazyn committed Sep 12, 2017
1 parent c74128e commit 9d627b7
Show file tree
Hide file tree
Showing 10 changed files with 2 additions and 3,416 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
*.js linguist-language=JavaScript
src/assets/* linguist-vendored
src/global.css linguist-vendored
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ const createMainWindow = () => {

conversations = conversations.slice(0, 10).map((e, index) => {
return {
label: e.NickName,
label: e.RemarkName || e.NickName,
accelerator: `Cmd+${index}`,
click() {
mainWindow.show();
Expand All @@ -464,7 +464,7 @@ const createMainWindow = () => {

contacts = contacts.map(e => {
return {
label: e.NickName,
label: e.RemarkName || e.NickName,
click() {
mainWindow.show();
mainWindow.webContents.send('show-userinfo', {
Expand Down
Loading

0 comments on commit 9d627b7

Please sign in to comment.