diff --git a/TODO b/TODO index 9e7a044..f1ae8a9 100644 --- a/TODO +++ b/TODO @@ -2,12 +2,8 @@ Instapaper support, deal breaker for @dssstrkl - Web browser buttons are too close (problem with big fingers) - Probably use icons for "Retweet" instead of a label? - Photo picker only selects from camera roll, not whole library - Drop shadow on text in the detail view seems off, there is a white outline surrounding it instead of just the bottom. @@ -17,9 +13,6 @@ is because we are using one of UIKit's broken draw/measure APIs, we need to use the other one. - On switch-to-foreground, do not scroll to the last tweet - unless we are at the top of the tweet list - Reduce the audio quality, currently it is too slow to load Settings are not loaded on startup, change all the convoluted diff --git a/TweetStation/UI/Camera.cs b/TweetStation/UI/Camera.cs index ba193a5..43b0e3c 100644 --- a/TweetStation/UI/Camera.cs +++ b/TweetStation/UI/Camera.cs @@ -69,7 +69,7 @@ public static void TakePicture (UIViewController parent, Action ca public static void SelectPicture (UIViewController parent, Action callback) { Init (); - picker.SourceType = UIImagePickerControllerSourceType.SavedPhotosAlbum; + picker.SourceType = UIImagePickerControllerSourceType.PhotoLibrary; _callback = callback; parent.PresentModalViewController (picker, true); }