ActiveState Community

Toolbar Wrapping

Posted by rainbow on 2009-08-13 10:40
OS: Windows

Komodo is a great product.

One feature that annoys me is the fact that if I have too many buttons, the remaining buttons disappear. The toolbar used to wrap. Two ideas to fix this situation:

Allow toolbars to wrap.
Allowing for multiple rows of toolbars, allow users to put toolbars where ever they want.

Thank you.

toddw | Thu, 2009-08-13 11:20

Yes, this problem is especially noticeable with the Komodo IDE toolbar. The following bug describes the problem and reasoning of why this is the way it is in Komodo:
http://bugs.activestate.com/show_bug.cgi?id=83696

Cheers,
Todd

rainbow | Fri, 2009-08-14 13:44

Could an option be put into the Preferences so that the user could turn Toolbar wrapping on or off? It's frustrating for me that the toolbars do not wrap.

(Personally, I wish Komodo would allow me to move my toolbars around like I can in other applications.)

Thank you.

toddw | Fri, 2009-08-14 14:51

You can turn on the toolbar wrapping using css. Place this in your userChrome.css file and you'll get the toolbars back.

#main-toolboxrow {
  overflow: visible !important;
  display: block !important;
}
#main-toolboxrow {
  overflow: visible !important;
  display: block !important;
}

Cheers,
Todd

rainbow | Fri, 2009-08-14 16:22

That worked great.

Thank you.