gnome-commander r1909 - in trunk: . doc/C src



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

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

Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/doc/C/gnome-commander.xml
   trunk/src/gnome-cmd-main-win.cc

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Fri Jul 25 20:07:53 2008
@@ -3,6 +3,7 @@
 ---------------
 
 Bug fixes:
+ * Fixed problem #522430 (quick search for files starting with uppercase)
  * Fixed problem #532615 (file operations on wrong file)
  * Fixed problem #538806 (quick search in root dir)
  * Fixed problem #539753 (build error on Solaris)

Modified: trunk/doc/C/gnome-commander.xml
==============================================================================
--- trunk/doc/C/gnome-commander.xml	(original)
+++ trunk/doc/C/gnome-commander.xml	Fri Jul 25 20:07:53 2008
@@ -5918,6 +5918,9 @@
                 <para>
                     <itemizedlist>
                         <listitem>
+                            <para>Fixed problem #522430 (quick search for files starting with uppercase)</para>
+                        </listitem>
+                        <listitem>
                             <para>Fixed problem #532615 (file operations on wrong file)</para>
                         </listitem>
                         <listitem>

Modified: trunk/src/gnome-cmd-main-win.cc
==============================================================================
--- trunk/src/gnome-cmd-main-win.cc	(original)
+++ trunk/src/gnome-cmd-main-win.cc	Fri Jul 25 20:07:53 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]