Skip to content

Commit

Permalink
fixes merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Clancey committed May 29, 2012
2 parents 0ee8e49 + 3b420ff commit c2f4519
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Binary file removed .DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -26,3 +26,5 @@ Thumbs.db
DialogSampleApp/DialogSampleApp.pidb

MonoDroid.Dialog/MonoDroid.Dialog.pidb

.DS_Store
4 changes: 2 additions & 2 deletions MonoDroid.Dialog/EntryElement.cs
Expand Up @@ -82,9 +82,9 @@ public override View GetView(Context context, View convertView, ViewGroup parent
_entry.Hint = this.Hint;

if (this.Password)
_entry.InputType = InputTypes.ClassText | InputTypes.TextVariationPassword;
_entry.InputType = (InputTypes.ClassText | InputTypes.TextVariationPassword);
else if (this.Numeric)
_entry.InputType = InputTypes.ClassNumber | InputTypes.NumberFlagDecimal | InputTypes.NumberFlagSigned;
_entry.InputType = (InputTypes.ClassNumber | InputTypes.NumberFlagDecimal | InputTypes.NumberFlagSigned);
else
_entry.InputType = InputTypes.ClassText;

Expand Down

0 comments on commit c2f4519

Please sign in to comment.