Hi, cool module, but I have a visualization problem: I created a "control panel block" and I put it in "content region". When I watch the page with Internet Explorer 7, an annoying scrollbar appear at the right border of the block.
I think I've solved it by redefining, in control-panel css class, the overflow property in my css, like this:

.control-panel {
  overflow: hidden;
 }

(overflow: hidden; instead of auto) Is it a correct solution?