gnome-commander r1910 - in branches/gcmd-1-3: . src



Author: epiotr
Date: Fri Jul 25 20:09:41 2008
New Revision: 1910
URL: http://svn.gnome.org/viewvc/gnome-commander?rev=1910&view=rev

Log:
Fixed problem #522430 (quick search for files starting with uppercase)

Modified:
   branches/gcmd-1-3/ChangeLog
   branches/gcmd-1-3/src/gnome-cmd-main-win.cc

Modified: branches/gcmd-1-3/src/gnome-cmd-main-win.cc
==============================================================================
--- branches/gcmd-1-3/src/gnome-cmd-main-win.cc	(original)
+++ branches/gcmd-1-3/src/gnome-cmd-main-win.cc	Fri Jul 25 20:09:41 2008
@@ -134,10 +134,10 @@
             (event->keyval == GDK_period)))
         return FALSE;
 
-    if (!gnome_cmd_data_get_alt_quick_search())
+    if (!gnome_cmd_data_get_alt_quick_search ())
         return FALSE;
 
-    if (!state_is_alt(event->state))
+    if (!state_is_alt (event->state) && !state_is_alt_shift (event->state))
         return FALSE;
 
     GnomeCmdFileSelector *fs = gnome_cmd_main_win_get_fs (mw, ACTIVE);



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