From 754a69709994cc64396a37a49259659e015e3c68 Mon Sep 17 00:00:00 2001 From: o9000 Date: Wed, 18 May 2016 23:23:15 +0200 Subject: [PATCH] Tint2conf: enable all border sides by default (issue #580) --- src/tint2conf/properties.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tint2conf/properties.c b/src/tint2conf/properties.c index da767f7..98b2821 100644 --- a/src/tint2conf/properties.c +++ b/src/tint2conf/properties.c @@ -746,10 +746,10 @@ void background_create_new() { int r = 0; int b = 0; - gboolean sideTop = FALSE; - gboolean sideBottom = FALSE; - gboolean sideLeft = FALSE; - gboolean sideRight = FALSE; + gboolean sideTop = TRUE; + gboolean sideBottom = TRUE; + gboolean sideLeft = TRUE; + gboolean sideRight = TRUE; GdkColor fillColor; cairoColor2GdkColor(0, 0, 0, &fillColor); int fillOpacity = 0;