Ver código fonte

activity mail

Marino Faggiana 8 anos atrás
pai
commit
b31035d0a1
1 arquivos alterados com 3 adições e 1 exclusões
  1. 3 1
      iOSClient/Settings/CCManageHelp.m

+ 3 - 1
iOSClient/Settings/CCManageHelp.m

@@ -205,7 +205,9 @@
         
         actionFile = [[NSString stringWithFormat:@"%@ %@", activity.action, activity.file] stringByPaddingToLength:100 withString:@" " startingAtIndex:0];
         
-        note = [activity.note stringByPaddingToLength:150 withString:@" " startingAtIndex:0];
+        if (activity.idActivity == 0) note = [NSString stringWithFormat:@"%@ Selector: %@", activity.note, activity.selector];
+        else note = activity.note;
+        note = [note stringByPaddingToLength:200 withString:@" " startingAtIndex:0];
         
         fileAttachment = [fileAttachment stringByAppendingString:[NSString stringWithFormat:@"| %@ | %@ | %@ | %@ |\n", date, type, actionFile, note]];
     }