Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/macdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MyDocument.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MyDocument.cs b/MyDocument.cs
index 7f2eecd..8fe7923 100644
--- a/MyDocument.cs
+++ b/MyDocument.cs
@@ -123,7 +123,7 @@ namespace macdoc
{
outlineView.DataSource = new DocTreeDataSource (this);
outlineView.Delegate = new OutlineDelegate (this);
- if (AppDelegate.IsOnLion)
+ if (AppDelegate.IsOnLionOrBetter)
outlineView.EnclosingScrollView.HorizontalScrollElasticity = outlineView.EnclosingScrollView.VerticalScrollElasticity = NSScrollElasticity.None;
}
@@ -155,7 +155,7 @@ namespace macdoc
void SetupBookmarks ()
{
- if (!AppDelegate.IsOnLion){
+ if (!AppDelegate.IsOnLionOrBetter){
addBookmarkBtn.Hidden = true;
viewBookmarksBtn.Hidden = true;
@@ -263,7 +263,7 @@ namespace macdoc
if (ts < loadUrlTimestamp)
return;
currentUrl = node == null ? url : node.PublicUrl;
- if (AppDelegate.IsOnLion)
+ if (AppDelegate.IsOnLionOrBetter)
InvalidateRestorableState ();
if (addToHistory)
history.AppendHistory (new LinkPageVisit (this, currentUrl));