From 5f1e25152c47f0df20a5aeb520c066304914cf78 Mon Sep 17 00:00:00 2001 From: David Maciejak Date: Thu, 12 Jun 2014 12:50:45 +0700 Subject: [PATCH] wmaker: darken labels from docked application settings This patch darkens DnD labels when support is not compiled in. --- src/dockedapp.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dockedapp.c b/src/dockedapp.c index a7bca3bd..6a84afc6 100644 --- a/src/dockedapp.c +++ b/src/dockedapp.c @@ -316,6 +316,9 @@ void ShowDockAppSettingsPanel(WAppIcon * aicon) #else WMSetTextFieldEditable(panel->dndCommandField, False); WMSetLabelText(panel->dndCommandLabel, _("DND support was not compiled in")); + + WMSetFrameTitleColor(panel->dndCommandFrame, WMDarkGrayColor(scr->wmscreen)); + WMSetLabelTextColor(panel->dndCommandLabel, WMDarkGrayColor(scr->wmscreen)); #endif WMMapSubwidgets(panel->dndCommandFrame);