[gnome-music] clear alignment spaces while populating dicts



commit 44545b4dec6e3b7bfbe264e5306c187f07df2687
Author: Eslam Mostafa <cseslam gmail com>
Date:   Mon Apr 1 17:26:05 2013 +0200

    clear alignment spaces while populating dicts
    
    Signed-off-by: Seif Lotfy <seif lotfy com>

 src/application.js |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/src/application.js b/src/application.js
index 908aad7..20c16ad 100644
--- a/src/application.js
+++ b/src/application.js
@@ -48,8 +48,8 @@ const Application = new Lang.Class({
 
     _init: function() {
         this.parent({
-            application_id:     'org.gnome.Music',
-            flags:              Gio.ApplicationFlags.FLAGS_NONE,
+            application_id: 'org.gnome.Music',
+            flags: Gio.ApplicationFlags.FLAGS_NONE,
             inactivity_timeout: 12000
         });
 
@@ -62,17 +62,17 @@ const Application = new Lang.Class({
 
     _buildApp: function() {
         this._window = new Gtk.ApplicationWindow({
-            application:        this,
-            title:              _("Music"),
-            window_position:    Gtk.WindowPosition.CENTER,
+            application: this,
+            title: _("Music"),
+            window_position: Gtk.WindowPosition.CENTER,
             hide_titlebar_when_maximized: true
         });
 
 
         this._window.set_size_request (800, 600)
         this.vbox = new Gtk.Box({
-            orientation:        Gtk.Orientation.VERTICAL,
-            spacing:            0
+            orientation: Gtk.Orientation.VERTICAL,
+            spacing: 0
         });
 
         this.player = new Player.Player();
@@ -81,7 +81,7 @@ const Application = new Lang.Class({
 
         this.toolbar = new Toolbar.Toolbar();
         this._stack = new Gd.Stack({
-            visible:            true
+            visible: true
         });
 
         this._window.set_default_size(640, 400);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]