From ce435aa1016b230151a73c97d1af443b77f137a3 Mon Sep 17 00:00:00 2001 From: Ramiro Saenz Date: Mon, 4 Jul 2016 19:53:36 -0300 Subject: [PATCH] Changed order of action buttons in "Enabled Services" --- app/view/main/Main.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/view/main/Main.js b/app/view/main/Main.js index a9e34aba..f778be43 100644 --- a/app/view/main/Main.js +++ b/app/view/main/Main.js @@ -173,17 +173,17 @@ Ext.define('Rambox.view.main.Main', { ,align: 'center' ,items: [ { - glyph: 0xf1f8 - ,tooltip: 'Remove' - ,handler: 'removeService' - ,getClass: function(){ return 'x-hidden-display'; } - } - ,{ glyph: 0xf013 ,tooltip: 'Configure' ,handler: 'configureService' ,getClass: function(){ return 'x-hidden-display'; } } + ,{ + glyph: 0xf1f8 + ,tooltip: 'Remove' + ,handler: 'removeService' + ,getClass: function(){ return 'x-hidden-display'; } + } ] } ]