Changeset 3642
- Timestamp:
- 11/08/07 07:44:57 (1 year ago)
- Files:
-
- trunk/demo/DaboDemo.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/demo/DaboDemo.py
r3530 r3642 1 1 #!/usr/bin/env python 2 2 # -*- coding: utf-8 -*- 3 4 3 import sys 5 4 import os … … 11 10 # The splash screen looks great on Mac/Win, and crappy on Linux. 12 11 useSplash = "linux" not in platform.platform().lower() 13 mfc = os.path.join(os.path.split(sys.argv[0])[0], "DaboDemo.cdxml") 12 mfc = "DaboDemo.cdxml" 13 if not os.path.exists(mfc): 14 mfc = os.path.join(os.path.split(sys.argv[0])[0], mfc) 14 15 15 16 app = dabo.dApp(showSplashScreen=useSplash, splashTimeout=3000,
