summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls
diff options
context:
space:
mode:
authorPaul DiPietro <pauldipietro@users.noreply.github.com>2017-01-30 17:50:49 -0600
committerRui Marinho <me@ruimarinho.net>2017-01-30 23:51:56 +0000
commitd45134b28e1363d516367c9e3b7f1ab7798030b0 (patch)
tree713d8ad915a8f072e2c484da801b20cd4c9e0827 /Xamarin.Forms.Controls
parent1bf25891438f8356178ac71f18fe2974c75207a9 (diff)
downloadxamarin-forms-d45134b28e1363d516367c9e3b7f1ab7798030b0.tar.gz
xamarin-forms-d45134b28e1363d516367c9e3b7f1ab7798030b0.tar.bz2
xamarin-forms-d45134b28e1363d516367c9e3b7f1ab7798030b0.zip
[iOS] Remove "Enabled" usage on AdjustsFontSizeToFitWidth (#696)
* [iOS] Remove "Enabled" usage on AdjustsFontSizeToFitWidth * Update docs
Diffstat (limited to 'Xamarin.Forms.Controls')
-rw-r--r--Xamarin.Forms.Controls/GalleryPages/PlatformSpecificsGalleries/EntryPageiOS.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Controls/GalleryPages/PlatformSpecificsGalleries/EntryPageiOS.cs b/Xamarin.Forms.Controls/GalleryPages/PlatformSpecificsGalleries/EntryPageiOS.cs
index 9093c3b2..88936786 100644
--- a/Xamarin.Forms.Controls/GalleryPages/PlatformSpecificsGalleries/EntryPageiOS.cs
+++ b/Xamarin.Forms.Controls/GalleryPages/PlatformSpecificsGalleries/EntryPageiOS.cs
@@ -23,7 +23,7 @@ namespace Xamarin.Forms.Controls.GalleryPages.PlatformSpecificsGalleries
new Button
{
Text = "Toggle AdjustsFontSizeToFitWidth",
- Command = new Command(() => entry.On<iOS>().SetAdjustsFontSizeToFitWidthEnabled(!entry.On<iOS>().IsAdjustsFontSizeToFitWidthEnabled()))
+ Command = new Command(() => entry.On<iOS>().SetAdjustsFontSizeToFitWidth(!entry.On<iOS>().AdjustsFontSizeToFitWidth()))
}
}
};