Modified to work together with BBPy
Re-enabled splash screen
diff --git a/Mac/Tools/twit/twit.py b/Mac/Tools/twit/twit.py
index 19d6af1..9db908e 100644
--- a/Mac/Tools/twit/twit.py
+++ b/Mac/Tools/twit/twit.py
@@ -12,9 +12,8 @@
import os
if os.name == 'mac':
-# Not supported in distributed 1.4b3:
-## import MacOS
-## MacOS.splash(515) # Try to show the splash screen
+ import MacOS
+ MacOS.splash(515) # Try to show the splash screen
import mactwit_app; twit_app = mactwit_app
else:
try:
@@ -32,8 +31,8 @@
def main():
twit_app.Initialize()
-## if os.name == 'mac':
-## MacOS.splash()
+ if os.name == 'mac':
+ MacOS.splash()
twit_app.Twit('none', None)
def run(statement, globals=None, locals=None):