~kelemeng/banshee/bug743928

« back to all changes in this revision

Viewing changes to src/Clients/Nereid/Nereid/PlayerInterface.cs

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2011-05-14 22:25:36 UTC
  • mfrom: (6.3.15 experimental)
  • Revision ID: james.westby@ubuntu.com-20110514222536-u1x7ikxdqkmfvyuz
Tags: 2.1.0-1ubuntu1
* [2396c18] Merge from Debian Unstable, remaining changes:
  + Enable SoundMenu and Disable NotificationArea by default
  + Disable boo and karma extensions
  + Enable and recommnd u1ms and soundmenu extensions
  + Move desktop file for Meego UI to /usr/share/une/applications
  + Change the url for the Amazon store redirector
  + Create the U1MS widget earlier and bump libu1 requirement
* [9d7c600] Drop upstreamed u1ms-initialize-earlier patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
677
677
                }
678
678
            }
679
679
 
680
 
            // Don't disable them if ctrl is pressed
681
 
            disable_keybindings &= (evnt.State & Gdk.ModifierType.ControlMask) == 0 &&
682
 
                evnt.Key != Gdk.Key.Control_L && evnt.Key != Gdk.Key.Control_R;
 
680
            // Don't disable them if ctrl is pressed, unless ctrl-a is pressed
 
681
            if (evnt.Key != Gdk.Key.a) {
 
682
                disable_keybindings &= (evnt.State & Gdk.ModifierType.ControlMask) == 0 &&
 
683
                    evnt.Key != Gdk.Key.Control_L && evnt.Key != Gdk.Key.Control_R;
 
684
            }
683
685
 
684
686
            if (disable_keybindings) {
685
687
                if (accel_group_active) {