summaryrefslogtreecommitdiffstats
path: root/Mac/IDE scripts/Widget demos/TwoLists.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mac/IDE scripts/Widget demos/TwoLists.py')
-rw-r--r--Mac/IDE scripts/Widget demos/TwoLists.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Mac/IDE scripts/Widget demos/TwoLists.py b/Mac/IDE scripts/Widget demos/TwoLists.py
index ee52c89..f1b58f2 100644
--- a/Mac/IDE scripts/Widget demos/TwoLists.py
+++ b/Mac/IDE scripts/Widget demos/TwoLists.py
@@ -1,16 +1,16 @@
import W
def twothird(width, height):
- return (8, 8, width - 8, 2*height/3 - 4)
+ return (8, 8, width - 8, 2*height/3 - 4)
def onethird(width, height):
- return (8, 2*height/3 + 4, width - 8, height - 22)
+ return (8, 2*height/3 + 4, width - 8, height - 22)
def halfbounds1(width, height):
- return (0, 0, width/2 - 4, height)
+ return (0, 0, width/2 - 4, height)
def halfbounds2(width, height):
- return (width/2 + 4, 0, width, height)
+ return (width/2 + 4, 0, width, height)
window = W.Window((400, 400), "Sizable window with two lists", minsize = (200, 200))