From f8e20b82b5c8c615fd64a52ad5fe499e3734a004 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Wed, 9 Dec 2020 18:41:59 +0100 Subject: [PATCH] Remove alpha blending for text color specifically for the TDE Menu. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This caused the first level of the TDE menu to be difficult to read without any useful benefit. Signed-off-by: Slávek Banko --- domino/domino.cpp | 4 ---- domino/eventfilter.cpp | 8 -------- 2 files changed, 12 deletions(-) diff --git a/domino/domino.cpp b/domino/domino.cpp index 2fc0231..214171e 100644 --- a/domino/domino.cpp +++ b/domino/domino.cpp @@ -853,10 +853,6 @@ void DominoStyle::polish( const TQStyleControlElementData &ceData, ControlElemen installObjectEventHandler(ceData, elementFlags, ptr, this); } else if(dynamic_cast(widget)) { - - if(widget->isA("PanelKMenu")) - widget->setPaletteForegroundColor(alphaBlendColors(_popupMenuColor, tqApp->palette().active().foreground(), 150)); - widget->setBackgroundMode( NoBackground ); installObjectEventHandler(ceData, elementFlags, ptr, this); } diff --git a/domino/eventfilter.cpp b/domino/eventfilter.cpp index fc67414..af9c9e8 100644 --- a/domino/eventfilter.cpp +++ b/domino/eventfilter.cpp @@ -1258,14 +1258,6 @@ bool DominoStyle::objectEventHandler( const TQStyleControlElementData &ceData, case TQEvent::Hide: static_cast(obj)->setBackgroundMode(NoBackground); return false; - case TQEvent::ApplicationPaletteChange: - if(obj->isA("PanelKMenu")) { - TQWidget* w = static_cast(obj); - TQPalette pal = tqApp->palette(); - pal.setColor(TQColorGroup::ButtonText, alphaBlendColors(_popupMenuColor, pal.active().foreground(), 150)); - w->setPalette(pal); - return true; - } default: return false; }