Skip to content

Commit

Permalink
Icon font updated
Browse files Browse the repository at this point in the history
  • Loading branch information
hluk committed Jun 16, 2013
1 parent 7eb423d commit 8beb486
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/gui/configurationmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ bool ConfigurationManager::defaultCommand(int index, Command *c)
case 6:
c->name = tr("Run shell script");
c->re = QRegExp("^#!/bin/bash");
c->icon = QString(QChar(IconEdit));
c->icon = QString(QChar(IconTerminal));
c->cmd = "/bin/bash";
c->input = "text/plain";
c->output = "text/plain";
Expand Down
5 changes: 4 additions & 1 deletion src/gui/iconfactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,11 @@ enum IconId {
IconSortUp = 0xf0de,
IconPaste = 0xf0ea,
IconKeyboard = 0xf11c,
IconSortByAlphabet = 0xf15d,
IconSortByAlphabetAlt = 0xf15e,
IconTerminal = 0xf120,
IconEditSign = 0xf14b,
IconLast = 0xf14d
IconLast = 0xf18a
};

class IconFactory
Expand Down
4 changes: 2 additions & 2 deletions src/gui/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ const QIcon iconNew() { return getIcon("document-new", IconFile); }
const QIcon iconOpen() { return getIcon("document-open", IconFolderOpen); }
const QIcon iconPaste() { return getIcon("edit-paste", IconPaste); }
const QIcon iconPreferences() { return getIcon("preferences-other", IconWrench); }
const QIcon iconReverse() { return getIcon("view-sort-descending", IconSortUp); }
const QIcon iconReverse() { return getIcon("view-sort-descending", IconSortByAlphabetAlt); }
const QIcon iconSave() { return getIcon("document-save", IconSave); }
const QIcon iconSort() { return getIcon("view-sort-ascending", IconSortDown); }
const QIcon iconSort() { return getIcon("view-sort-ascending", IconSortByAlphabet); }
const QIcon &iconTabNew() { return getIconFromResources("tab_new"); }
const QIcon &iconTabRemove() { return getIconFromResources("tab_remove"); }
const QIcon &iconTabRename() { return getIconFromResources("tab_rename"); }
Expand Down
Binary file modified src/images/fontawesome-webfont.ttf
Binary file not shown.

0 comments on commit 8beb486

Please sign in to comment.