Author: rmottola
Date: Tue May 26 11:45:04 2015
New Revision: 38548

URL: http://svn.gna.org/viewcvs/gnustep?rev=38548&view=rev
Log:
Regenerate and propagate selection on windows key change, even if it did not 
change inside the viewer

Modified:
    apps/gworkspace/trunk/ChangeLog
    apps/gworkspace/trunk/GWorkspace/FileViewer/GWViewer.m
    apps/gworkspace/trunk/GWorkspace/GWorkspaceInfo.plist

Modified: apps/gworkspace/trunk/ChangeLog
URL: 
http://svn.gna.org/viewcvs/gnustep/apps/gworkspace/trunk/ChangeLog?rev=38548&r1=38547&r2=38548&view=diff
==============================================================================
--- apps/gworkspace/trunk/ChangeLog     (original)
+++ apps/gworkspace/trunk/ChangeLog     Tue May 26 11:45:04 2015
@@ -1,3 +1,8 @@
+2015-05-26 Riccardo Mottola <[email protected]>
+
+       * GWorkspace/FileViewer/GWViewer.m
+       Regenerate and propagate selection on windows key change, even if it 
did not change inside the viewer.
+
 2015-05-26 Riccardo Mottola <[email protected]>
 
        * Tools/fswatcher/fswatcher-inotify.h

Modified: apps/gworkspace/trunk/GWorkspace/FileViewer/GWViewer.m
URL: 
http://svn.gna.org/viewcvs/gnustep/apps/gworkspace/trunk/GWorkspace/FileViewer/GWViewer.m?rev=38548&r1=38547&r2=38548&view=diff
==============================================================================
--- apps/gworkspace/trunk/GWorkspace/FileViewer/GWViewer.m      (original)
+++ apps/gworkspace/trunk/GWorkspace/FileViewer/GWViewer.m      Tue May 26 
11:45:04 2015
@@ -1,6 +1,6 @@
 /* GWViewer.m
  *  
- * Copyright (C) 2004-2014 Free Software Foundation, Inc.
+ * Copyright (C) 2004-2015 Free Software Foundation, Inc.
  *
  * Author: Enrico Sersale <[email protected]>
  *         Riccardo Mottola
@@ -533,9 +533,8 @@
   FSNode *node;
   NSArray *components;
 
-  if (closing) {
+  if (closing)
     return;
-  }
 
   [manager selectionChanged: newsel];
 
@@ -967,8 +966,8 @@
   if ([selection count] == 0)
     {
       selection = [NSArray arrayWithObject: [nodeView shownNode]];
-      [self selectionChanged: selection];
-    }
+    }
+  [self selectionChanged: selection];
   
   [manager changeHistoryOwner: self];
 }

Modified: apps/gworkspace/trunk/GWorkspace/GWorkspaceInfo.plist
URL: 
http://svn.gna.org/viewcvs/gnustep/apps/gworkspace/trunk/GWorkspace/GWorkspaceInfo.plist?rev=38548&r1=38547&r2=38548&view=diff
==============================================================================
--- apps/gworkspace/trunk/GWorkspace/GWorkspaceInfo.plist       (original)
+++ apps/gworkspace/trunk/GWorkspace/GWorkspaceInfo.plist       Tue May 26 
11:45:04 2015
@@ -3,7 +3,7 @@
     ApplicationDescription = "GNUstep Workspace Manager";
     ApplicationIcon = "FileManager.tiff";
     ApplicationRelease = "0.9.3";
-    NSBuildVersion = "12 2014";
+    NSBuildVersion = "05 2015";
     Authors = (
       "Riccardo Mottola",
       "Enrico Sersale",
@@ -11,7 +11,7 @@
       "Dennis Leeuw <[email protected]>"
     );
     URL = "http://www.gnustep.org/experience/GWorkspace.html";;
-    Copyright = "Copyright (C) 2003-2014 Free Software Foundation, Inc.";
+    Copyright = "Copyright (C) 2003-2015 Free Software Foundation, Inc.";
     CopyrightDescription = "Released under the GNU General Public License 2.0 
or later";
     NSIcon = "FileManager.tiff";
     NSRole = "Viewer";


_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to