public
Description: An OS X application to build a standalone web site as an export from my photo album.
Homepage: http://bleu.west.spy.net/~dustin/projects/photosync/
Clone URL: git://github.com/dustin/photosync.git
Search Repo:
gnustep workarounds for fields that are sometimes hidden
dustin (author)
Sun Feb 13 02:10:37 -0800 2005
commit  752d28871fb9bafc8c299203b4d99414a855ea71
tree    0a34dbc92ee14afe1222296526f59cd43fc1d9ed
parent  26a948870346f8cfa895421d6592f3c2334113e4
...
50
51
52
 
 
 
 
 
53
54
55
...
90
91
92
 
 
 
 
 
93
94
95
...
50
51
52
53
54
55
56
57
58
59
60
...
95
96
97
98
99
100
101
102
103
104
105
0
@@ -50,6 +50,11 @@
0
     [self setButtonAction:BUTTON_SYNC];
0
     [statusText setHidden: YES];
0
     [progressIndicator setHidden: YES];
0
+#ifdef GNUSTEP
0
+ // more gnustep workarounds
0
+ [statusText display];
0
+ [progressIndicator display];
0
+#endif
0
   } else {
0
     NSLog(@"Starting a task");
0
     // Hide the progress indicator again so it isn't just stuck.
0
@@ -90,6 +95,11 @@
0
   } else if(msg != nil) {
0
     [statusText setStringValue:msg];
0
   }
0
+#ifdef GNUSTEP
0
+ // this is also a gnustep workaround
0
+ [progressIndicator display];
0
+ [statusText display];
0
+#endif
0
 }
0
 
0
 -(BOOL)destExists:(Location *)location

Comments

    No one has commented yet.