~ubuntu-branches/debian/sid/gnome-sushi/sid

« back to all changes in this revision

Viewing changes to src/js/viewers/gst.js

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2015-05-31 15:56:19 UTC
  • mfrom: (0.1.15)
  • Revision ID: package-import@ubuntu.com-20150531155619-n4w9gw76c0etojtn
Tags: 3.16.0-1
* New upstream release.
* Update Build-Depends for the switch to WebKit2 and switch Depends on
  gir1.2-webkit-3.0 to gir1.2-webkit2-4.0.
* Bump Build-Depends on libgtk-3-dev to (>= 3.13.2) as per configure.ac.
* Bump Standards-Version to 3.9.6.
* Bump debhelper compatibility level to 9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
            this._toolbarPlay.set_icon_name('media-playback-pause-symbolic');
130
130
        else
131
131
        {
132
 
            let iconName =
133
 
            (this._toolbarPlay.get_direction() == Gtk.TextDirection.RTL) ?
134
 
                'media-playback-start-rtl-symbolic' : 'media-playback-start-symbolic';
 
132
            let iconName = 'media-playback-start-symbolic';
135
133
            this._toolbarPlay.set_icon_name(iconName);
136
134
        }
137
135
    },
161
159
        this._toolbarPlay.show();
162
160
        this._mainToolbar.insert(this._toolbarPlay, 0);
163
161
 
164
 
        this._currentLabel = new Gtk.Label({ margin_left: 6,
165
 
                                             margin_right: 3 });
 
162
        this._currentLabel = new Gtk.Label({ margin_start: 6,
 
163
                                             margin_end: 3 });
166
164
        let item = new Gtk.ToolItem();
167
165
        item.add(this._currentLabel);
168
166
        item.show_all();
191
189
        item.show_all();
192
190
        this._mainToolbar.insert(item, 2);
193
191
 
194
 
        this._durationLabel = new Gtk.Label({ margin_left: 3,
195
 
                                              margin_right: 6 });
 
192
        this._durationLabel = new Gtk.Label({ margin_start: 3,
 
193
                                              margin_end: 6 });
196
194
        item = new Gtk.ToolItem();
197
195
        item.add(this._durationLabel);
198
196
        item.show_all();