From 4133d1e763cc9b19a399c84a055695c9fd0908d6 Mon Sep 17 00:00:00 2001
From: David Maciejak <david.maciejak@gmail.com>
Date: Thu, 12 Jun 2014 12:50:45 +0700
Subject: [PATCH 2/2] 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 a7bca3b..6a84afc 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);
 
-- 
1.8.3.2

