Author: gburt
Date: Thu Feb 7 17:28:24 2008
New Revision: 3163
URL: http://svn.gnome.org/viewvc/banshee?rev=3163&view=rev
Log:
2008-02-07 Gabriel Burt <[EMAIL PROTECTED]>
* src/Core/Nereid/Nereid/PlayerInterface.cs: Fix bug that prevented
using
keybindings while in the search entry.
Modified:
trunk/banshee/ChangeLog
trunk/banshee/src/Core/Nereid/Nereid/PlayerInterface.cs
Modified: trunk/banshee/src/Core/Nereid/Nereid/PlayerInterface.cs
==============================================================================
--- trunk/banshee/src/Core/Nereid/Nereid/PlayerInterface.cs (original)
+++ trunk/banshee/src/Core/Nereid/Nereid/PlayerInterface.cs Thu Feb 7
17:28:24 2008
@@ -457,7 +457,8 @@
{
bool focus_search = false;
- if (Focus is Entry && GtkUtilities.NoImportantModifiersAreSet ()) {
+ if (Focus is Entry && (GtkUtilities.NoImportantModifiersAreSet ()
&&
+ evnt.Key != Gdk.Key.Control_L && evnt.Key !=
Gdk.Key.Control_R)) {
if (accel_group_active) {
RemoveAccelGroup (action_service.UIManager.AccelGroup);
accel_group_active = false;
_______________________________________________
SVN-commits-list mailing list (read only)
http://mail.gnome.org/mailman/listinfo/svn-commits-list
Want to limit the commits to a few modules? Go to above URL, log in to edit
your options and select the modules ('topics') you want.
Module maintainer? It is possible to set the reply-to to your development
mailing list. Email [EMAIL PROTECTED] if interested.