From 7f0e40700089481600007046487ea647b741d4a2 Mon Sep 17 00:00:00 2001
From: David Maciejak <david.maciejak@gmail.com>
Date: Mon, 18 Aug 2014 07:24:28 +0700
Subject: [PATCH] wmaker: fix application/dock icon balloon

This patch is fixing an issue introduced with apercu feature.
The balloon was not displayed if the type is appicon or dock icon.
---
 src/balloon.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/balloon.c b/src/balloon.c
index 769a346..4e3c08d 100644
--- a/src/balloon.c
+++ b/src/balloon.c
@@ -468,8 +468,7 @@ static void showBalloon(WScreen * scr)
 		showApercu(scr, x, y, (wPreferences.icon_size - 1) * 2, (wPreferences.icon_size - 1) * 2,
 					scr->balloon->text, scr->balloon->apercu);
 	else
-		if (wPreferences.miniwin_title_balloon)
-			showText(scr, x, y, scr->balloon->h, w, scr->balloon->text);
+		showText(scr, x, y, scr->balloon->h, w, scr->balloon->text);
 }
 
 static void frameBalloon(WObjDescriptor * object)
-- 
1.8.3.2

