aboutsummaryrefslogtreecommitdiff
path: root/src/Main.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2019-01-29 21:48:52 -0500
committerbobzel <zzzman@gmail.com>2019-01-29 21:48:52 -0500
commit02891812b01888aba3eada58d6051a80a79c1a18 (patch)
tree0fe0d23799211ef46874de771c07e47c401ef686 /src/Main.tsx
parentc45dd584af76e1cd6e48fa44f9296228cdceb649 (diff)
flexLayout fixes, but flexlayout seems hopelessly broken once it gets scaled.
Diffstat (limited to 'src/Main.tsx')
-rw-r--r--src/Main.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main.tsx b/src/Main.tsx
index 566216373..c636ee42e 100644
--- a/src/Main.tsx
+++ b/src/Main.tsx
@@ -61,7 +61,7 @@ runInAction(() => {
let doc5 = Documents.ImageDocument("https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Cat03.jpg/1200px-Cat03.jpg", {
x: 650, y: 500, width: 600, height: 600
});
- let docset2 = new Array<Document>(doc1, doc4, doc3);
+ let docset2 = new Array<Document>(doc4, doc1, doc3);
let doc6 = Documents.DockDocument(docset2, {
x: 350, y: 100
});