# HG changeset patch # User Raimund Renkert # Date 1377859899 -7200 # Node ID d1bb925bb5f591ad0aea459c5c66248132ae4ee4 # Parent 4d968257d9827292206aae7b528094e65a6aaa9d Use the new icons in list views and status bar. diff -r 4d968257d982 -r d1bb925bb5f5 app/view/Viewport.js --- a/app/view/Viewport.js Fri Aug 30 12:50:23 2013 +0200 +++ b/app/view/Viewport.js Fri Aug 30 12:51:39 2013 +0200 @@ -165,9 +165,9 @@ } }, "->", - {xtype: 'box', autoEl: {tag: 'img', src:'gfx/user.png'}}, + {xtype: 'box', autoEl: {tag: 'img', src:'gfx/user-identity.png'}}, {xtype: "tbtext", id:"userinfo", text:""}, - {xtype: 'box', autoEl: {tag: 'img', src:'gfx/usergroup.png'}}, + {xtype: 'box', autoEl: {tag: 'img', src:'gfx/network-workgroup.png'}}, {xtype: "tbtext", id:"groupinfo", text:""} ] } diff -r 4d968257d982 -r d1bb925bb5f5 app/view/kommentare/List.js --- a/app/view/kommentare/List.js Fri Aug 30 12:50:23 2013 +0200 +++ b/app/view/kommentare/List.js Fri Aug 30 12:51:39 2013 +0200 @@ -22,13 +22,13 @@ items: [ { text: 'Hinzufügen', - icon: 'gfx/plus.gif', + icon: 'gfx/list-add.png', action: 'add', probeId: this.probeId }, { text: 'Löschen', - icon: 'gfx/minus.gif', + icon: 'gfx/list-remove.png', action: 'delete' } ] diff -r 4d968257d982 -r d1bb925bb5f5 app/view/messungen/List.js --- a/app/view/messungen/List.js Fri Aug 30 12:50:23 2013 +0200 +++ b/app/view/messungen/List.js Fri Aug 30 12:51:39 2013 +0200 @@ -22,13 +22,13 @@ items: [ { text: 'Hinzufügen', - icon: 'gfx/plus.gif', + icon: 'gfx/list-add.png', action: 'add', probeId: this.probeId }, { text: 'Löschen', - icon: 'gfx/minus.gif', + icon: 'gfx/list-remove.png', action: 'delete' } ] diff -r 4d968257d982 -r d1bb925bb5f5 app/view/messwerte/List.js --- a/app/view/messwerte/List.js Fri Aug 30 12:50:23 2013 +0200 +++ b/app/view/messwerte/List.js Fri Aug 30 12:51:39 2013 +0200 @@ -23,14 +23,14 @@ items: [ { text: 'Hinzufügen', - icon: 'gfx/plus.gif', + icon: 'gfx/list-add.png', action: 'add', probeId: this.probeId, parentId: this.parentId }, { text: 'Löschen', - icon: 'gfx/minus.gif', + icon: 'gfx/list-remove.png', action: 'delete' } ] diff -r 4d968257d982 -r d1bb925bb5f5 app/view/mkommentare/List.js --- a/app/view/mkommentare/List.js Fri Aug 30 12:50:23 2013 +0200 +++ b/app/view/mkommentare/List.js Fri Aug 30 12:51:39 2013 +0200 @@ -23,14 +23,14 @@ items: [ { text: 'Hinzufügen', - icon: 'gfx/plus.gif', + icon: 'gfx/list-add.png', action: 'add', probeId: this.probeId, parentId: this.parentId }, { text: 'Löschen', - icon: 'gfx/minus.gif', + icon: 'gfx/list-remove.png', action: 'delete' } ] diff -r 4d968257d982 -r d1bb925bb5f5 app/view/orte/List.js --- a/app/view/orte/List.js Fri Aug 30 12:50:23 2013 +0200 +++ b/app/view/orte/List.js Fri Aug 30 12:51:39 2013 +0200 @@ -22,13 +22,13 @@ items: [ { text: 'Hinzufügen', - icon: 'gfx/plus.gif', + icon: 'gfx/list-add.png', action: 'add', probeId: this.probeId }, { text: 'Löschen', - icon: 'gfx/minus.gif', + icon: 'gfx/list-remove.png', action: 'delete' } ] diff -r 4d968257d982 -r d1bb925bb5f5 app/view/proben/List.js --- a/app/view/proben/List.js Fri Aug 30 12:50:23 2013 +0200 +++ b/app/view/proben/List.js Fri Aug 30 12:51:39 2013 +0200 @@ -21,17 +21,17 @@ items: [ { text: 'Hinzufügen', - icon: 'gfx/plus.gif', + icon: 'gfx/list-add.png', action: 'add' }, { text: 'Import', - icon: 'gfx/plus.gif', + icon: 'gfx/svn-commit.png', action: 'import' }, { text: 'Export', - icon: 'gfx/document-save-as-6.png', + icon: 'gfx/svn-update.png', action: 'export' } ] diff -r 4d968257d982 -r d1bb925bb5f5 app/view/status/List.js --- a/app/view/status/List.js Fri Aug 30 12:50:23 2013 +0200 +++ b/app/view/status/List.js Fri Aug 30 12:51:39 2013 +0200 @@ -23,14 +23,14 @@ items: [ { text: 'Hinzufügen', - icon: 'gfx/plus.gif', + icon: 'gfx/list-add.png', action: 'add', probeId: this.probeId, parentId: this.parentId }, { text: 'Löschen', - icon: 'gfx/minus.gif', + icon: 'gfx/list-remove.png', action: 'delete' } ] diff -r 4d968257d982 -r d1bb925bb5f5 app/view/zusatzwerte/List.js --- a/app/view/zusatzwerte/List.js Fri Aug 30 12:50:23 2013 +0200 +++ b/app/view/zusatzwerte/List.js Fri Aug 30 12:51:39 2013 +0200 @@ -22,13 +22,13 @@ items: [ { text: 'Hinzufügen', - icon: 'gfx/plus.gif', + icon: 'gfx/list-add.png', action: 'add', probeId: this.probeId }, { text: 'Löschen', - icon: 'gfx/minus.gif', + icon: 'gfx/list-remove.png', action: 'delete' } ]