diff --git a/done.txt b/done.txt
index 3038446..0562cb0 100644
--- a/done.txt
+++ b/done.txt
@@ -17,3 +17,14 @@ x 2014-04-16 (A) - create interface @EDITOR
x 2014-04-16 (C) separate to individual renderers @16colors
x 2014-04-16 @EDITOR edit item saves data routine
x 2014-04-17 @EDITOR BUGFIX - ansi/ascii toggle/saving
+x 2015-02-22 fix scrolling!
+x 2015-02-22 load SAUCE into 'info' lines (should be done at prep) @SAUCE @EDITRO
+x 2015-02-22 Add fonts - Amiga 1200 (replace or compare w/16colors version) @16colors
+x 2015-02-22 Add fonts - Amiga 500 @16colors
+x 2015-02-22 Add fonts - microknight @16colors
+x 2015-02-22 Add fonts - mOsOul @Fonts @16colors
+x 2015-02-22 Add p0t - fonts-nOodle @16colors
+x 2015-02-22 Fix Amiga mode rendering via sixteencolors lib @16colors
+x 2015-02-22 check below items for neccesity
+x 2015-02-22 load to array/picture, render from picture @16colors
+x 2015-02-22 speed up rendering more? @16colors
diff --git a/sahli.coffee b/sahli.coffee
index 71e9000..569a723 100644
--- a/sahli.coffee
+++ b/sahli.coffee
@@ -236,6 +236,8 @@ class @Sahli
zoomee.width '100%'
$('canvas').width '100%'
+# fix this up so it sets the appropriate width for the columns.
+# and then move the canvases into it.
@panelmode = ->
$('#panel').empty()
$('#panel').toggle()
@@ -249,14 +251,14 @@ class @Sahli
numpanels = canvs.length
hgt = canvs.height() * numpanels
numcols = Math.ceil(hgt / fw)
- pct = 100/numcols
+ amt = fw/numcols - 6
outer = $('
')
- for i in [1...numcols] by 1
+ for i in [1..numcols] by 1
dcol = $("
#{i}
")
dcol.addClass 'panelcolumn'
+ dcol.width amt
outer.append dcol
outer.addClass 'nosb'
- $('.panelcolumn').width("#{pct}%")
$('#panel').append outer
$('#outbox').toggle()
diff --git a/sahli.css b/sahli.css
index 0039790..5aef4ca 100644
--- a/sahli.css
+++ b/sahli.css
@@ -154,7 +154,7 @@ p.infobox {
.panelcolumn {
height: 100%;
color: #00f080;
- width: 25%;
+ width: 2em;
border: 2px dashed #10161a;
background: #0a0a0f;
display: inline-block;
diff --git a/todo.txt b/todo.txt
index 1f8868e..95c5436 100644
--- a/todo.txt
+++ b/todo.txt
@@ -1,27 +1,14 @@
-(A) fix scrolling!
+(B) 2015-02-22 ADF @OTHER
(B) @EDITOR add more Amiga fonts.
-
-
-(C) check below items for neccesity
-@EDITOR redo filenames to load from list of files in directory (specfied in 'location')
+(B) @EDITOR redo filenames to load from list of files in directory (specfied in 'location')
(A) remove the SAUCE lines at bottom, return ANSI object for render @SAUCE
(A) XBIN @OTHER
-(A) load SAUCE into 'info' lines (should be done at prep) @SAUCE @EDITRO
-(B) ADF @OTHER
-(B) Amiga ANSI @OTHER
+(C) Amiga ANSI @OTHER
(B) Avatar @OTHER
(B) BIN @OTHER
(B) IDF @OTHER
(B) PCBOARD @OTHER
-(B) THUMBNAILS - for returning to partymeister
+(D) THUMBNAILS - for returning to partymeister @PARTYMEISTER
(B) Tundra @OTHER
-(C) Add fonts - Amiga 1200 (replace or compare w/16colors version) @16colors
-(C) Add fonts - Amiga 500 @16colors
-(C) Add fonts - microknight @16colors
-(C) Add fonts - mOsOul @Fonts @16colors
-(C) Add p0t - fonts-nOodle @16colors
-(C) implement package import from partymeister @PARTYMEISTER
-(C) Fix Amiga mode rendering via sixteencolors lib @16colors
-(C) hook for progress @progress @PARTYMEISTER
-(C) load to array/picture, render from picture @16colors
-(C) speed up rendering more? @16colors
+(D) implement package import from partymeister @PARTYMEISTER
+(D) hook for progress @progress @PARTYMEISTER