From a8a277cbdc32c06fe59465fc3f8bc260dc7d82ea Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 9 Oct 1995 23:27:06 +0000 Subject: Fixed positioning of icon on copy() --- Mac/Lib/macostools.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Mac/Lib/macostools.py b/Mac/Lib/macostools.py index 87eff6e..aa5eb60 100644 --- a/Mac/Lib/macostools.py +++ b/Mac/Lib/macostools.py @@ -7,6 +7,7 @@ copy(src, dst) - Full copy of 'src' to 'dst' import macfs import Res import os +from MACFS import * Error = 'macostools.Error' @@ -74,7 +75,8 @@ def copy(src, dst, createpath=0): sf = srcfss.GetFInfo() df = dstfss.GetFInfo() - df.Creator, df.Type, df.Flags = sf.Creator, sf.Type, sf.Flags + df.Creator, df.Type = sf.Creator, sf.Type + df.Flags = (sf.Flags & (kIsStationary|kNameLocked|kHasBundle|kIsInvisible|kIsAlias)) dstfss.SetFInfo(df) def copytree(src, dst): -- cgit v0.12