Revision: 3484
          http://skim-app.svn.sourceforge.net/skim-app/?rev=3484&view=rev
Author:   hofman
Date:     2008-03-14 18:05:05 -0700 (Fri, 14 Mar 2008)

Log Message:
-----------
redo search when changing search options.

Modified Paths:
--------------
    trunk/SKMainWindowController.m

Modified: trunk/SKMainWindowController.m
===================================================================
--- trunk/SKMainWindowController.m      2008-03-14 18:44:37 UTC (rev 3483)
+++ trunk/SKMainWindowController.m      2008-03-15 01:05:05 UTC (rev 3484)
@@ -2102,10 +2102,14 @@
 
 - (IBAction)toggleCaseInsensitiveSearch:(id)sender {
     caseInsensitiveSearch = NO == caseInsensitiveSearch;
+    if ([[searchField stringValue] length])
+        [self search:searchField];
 }
 
 - (IBAction)toggleWholeWordSearch:(id)sender {
     wholeWordSearch = NO == wholeWordSearch;
+    if ([[searchField stringValue] length])
+        [self search:searchField];
 }
 
 - (IBAction)toggleLeftSidePane:(id)sender {


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Skim-app-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/skim-app-commit

Reply via email to