dtpanel core dumps when menus.ini only contains a section.
In void PanelWindow::onFocus(void* caller)
Motif::Color color(menuButtons.at(0)->getHighlightColor());
Should be
Motif::Color color(( menuButtons.size()>0 ? menuButtons.at(0)->getHighlightColor() : getBackground()));