Remove alpha blending for text color specifically for the TDE Menu.

This caused the first level of the TDE menu to be difficult to read
without any useful benefit.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
pull/2/head
Slávek Banko 3 years ago
parent 005d3c6f2b
commit f8e20b82b5
Signed by: SlavekB
GPG Key ID: 608F5293A04BE668

@ -853,10 +853,6 @@ void DominoStyle::polish( const TQStyleControlElementData &ceData, ControlElemen
installObjectEventHandler(ceData, elementFlags, ptr, this);
}
else if(dynamic_cast<TQPopupMenu*>(widget)) {
if(widget->isA("PanelKMenu"))
widget->setPaletteForegroundColor(alphaBlendColors(_popupMenuColor, tqApp->palette().active().foreground(), 150));
widget->setBackgroundMode( NoBackground );
installObjectEventHandler(ceData, elementFlags, ptr, this);
}

@ -1258,14 +1258,6 @@ bool DominoStyle::objectEventHandler( const TQStyleControlElementData &ceData,
case TQEvent::Hide:
static_cast<TQWidget*>(obj)->setBackgroundMode(NoBackground);
return false;
case TQEvent::ApplicationPaletteChange:
if(obj->isA("PanelKMenu")) {
TQWidget* w = static_cast<TQWidget*>(obj);
TQPalette pal = tqApp->palette();
pal.setColor(TQColorGroup::ButtonText, alphaBlendColors(_popupMenuColor, pal.active().foreground(), 150));
w->setPalette(pal);
return true;
}
default:
return false;
}

Loading…
Cancel
Save