1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/be0a75fd5658/ changeset: be0a75fd5658 user: jgoecks date: 2011-12-17 20:29:23 summary: Trackster: fix bug in 13ba6909faae that prevented display in Dense mode. affected #: 1 file diff -r e65f4e9539144c882f4f07355a033f53a1963ddd -r be0a75fd565845be5d6a9719552013548bb6a82f static/scripts/trackster.js --- a/static/scripts/trackster.js +++ b/static/scripts/trackster.js @@ -3966,10 +3966,8 @@ return this.summary_draw_height + SUMMARY_TREE_TOP_PADDING; } else { - var rows_required = 1; - if (mode === "no_detail" || mode === "Squish" || mode === "Pack") { - var rows_required = this.incremental_slots(w_scale, result.data, mode); - } + // All other modes require slotting. + var rows_required = this.incremental_slots(w_scale, result.data, mode); // HACK: use dummy painter to get required height. Painter should be extended so that get_required_height // works as a static function. var dummy_painter = new (this.painter)(null, null, null, this.prefs, mode); Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.