Skip to content

Commit

Permalink
Let user select any picture, not only saved pics, update TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
migueldeicaza committed Nov 11, 2010
1 parent 8eadb85 commit 0786613
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 0 additions & 7 deletions TODO
Expand Up @@ -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.

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion TweetStation/UI/Camera.cs
Expand Up @@ -69,7 +69,7 @@ public static void TakePicture (UIViewController parent, Action<NSDictionary> ca
public static void SelectPicture (UIViewController parent, Action<NSDictionary> callback)
{
Init ();
picker.SourceType = UIImagePickerControllerSourceType.SavedPhotosAlbum;
picker.SourceType = UIImagePickerControllerSourceType.PhotoLibrary;
_callback = callback;
parent.PresentModalViewController (picker, true);
}
Expand Down

0 comments on commit 0786613

Please sign in to comment.