From f7cb3e578c7e43795dae9d73d405e2ee435cb322 Mon Sep 17 00:00:00 2001 From: Goswin Date: Thu, 14 Nov 2019 22:41:15 +0100 Subject: [PATCH] fix TitleVisible --- Scripts/rhinoscript/view.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/rhinoscript/view.py b/Scripts/rhinoscript/view.py index 4b0d5a32..8185d4f2 100644 --- a/Scripts/rhinoscript/view.py +++ b/Scripts/rhinoscript/view.py @@ -500,7 +500,7 @@ def IsViewTitleVisible(view=None): ShowViewTitle """ view = __viewhelper(view) - return view.MainViewport.TitleVisible + return view.TitleVisible def IsWallpaper(view):