partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit d03e8a1c8d7ae40b204ccab77c4127768ffd959f
parent e1541bbdb2a090205d76551cfd0562c4b0f8e423
Author: Felicitus <felicitus@felicitus.org>
Date:   Tue,  5 Jul 2011 07:23:33 +0200

Reworked icons for the category editor

Diffstat:
Mfrontend/js/Components/CategoryEditor/CategoryEditorTree.js | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/frontend/js/Components/CategoryEditor/CategoryEditorTree.js b/frontend/js/Components/CategoryEditor/CategoryEditorTree.js @@ -106,21 +106,21 @@ Ext.define("PartKeepr.CategoryEditorTree", { }, createToolbar: function () { this.toolbarExpandButton = Ext.create("Ext.button.Button", { - icon: 'resources/silkicons/bullet_toggle_plus.png', + icon: 'resources/fugue-icons/icons/toggle-expand.png', tooltip: i18n("Expand All"), handler: this._onExpandClick, scope: this }); this.toolbarCollapseButton = Ext.create("Ext.button.Button", { - icon: 'resources/silkicons/bullet_toggle_minus.png', + icon: 'resources/fugue-icons/icons/toggle.png', tooltip: i18n("Collapse All"), handler: this._onCollapseClick, scope: this }); this.toolbarReloadButton = Ext.create("Ext.button.Button", { - icon: 'resources/silkicons/arrow_refresh.png', + icon: 'extjs/resources/themes/images/default/grid/refresh.gif', tooltip: i18n("Reload"), handler: this._onReloadClick, scope: this