~ubuntu-branches/ubuntu/vivid/gnome-shell/vivid

« back to all changes in this revision

Viewing changes to js/ui/osdWindow.js

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-07-31 21:29:20 UTC
  • mfrom: (1.1.51)
  • Revision ID: package-import@ubuntu.com-20130731212920-mz92zheiqgq2ggd1
Tags: 3.8.4-0ubuntu1
* New upstream release.
* debian/patches/git-dont-crash-for-unstaged-widgets.patch:
  - Dropped, applied in new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
167
167
                         { opacity: 0,
168
168
                           time: FADE_TIME,
169
169
                           transition: 'easeOutQuad',
170
 
                           onComplete: Lang.bind(this, this._reset) });
 
170
                           onComplete: Lang.bind(this, function() {
 
171
                              this._reset();
 
172
                              Meta.enable_unredirect_for_screen(global.screen);
 
173
                           })
 
174
                         });
171
175
    },
172
176
 
173
177
    _reset: function() {
174
178
        this.actor.hide();
175
179
        this.setLabel(null);
176
180
        this.setLevel(null);
177
 
        Meta.enable_unredirect_for_screen(global.screen);
178
181
    },
179
182
 
180
183
    _monitorsChanged: function() {