summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-07-24 16:42:19 +0200
committerDave Davenport <qball@gmpclient.org>2017-07-24 16:58:03 +0200
commit474e3b3d63037d84925c301745471f0111dced41 (patch)
tree48bd3c70ca71438df04037ebb87a01a69a986e88 /source
parentb83f1504d59b0d7627d2e19107f297f1af70db94 (diff)
Slight tweak to default theme
Diffstat (limited to 'source')
-rw-r--r--source/theme.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/theme.c b/source/theme.c
index 22017f92..59000c47 100644
--- a/source/theme.c
+++ b/source/theme.c
@@ -765,12 +765,16 @@ void rofi_theme_convert_old ( void )
rofi_theme_parse_string ( str );
const char *const str2 = "#window.mainbox.sidebar box { border: 0px; }";
rofi_theme_parse_string ( str2 );
+ const char *const str3 = "#window.mainbox.message box { border: 0px; }";
+ rofi_theme_parse_string ( str3 );
}
else if ( g_strcmp0 ( config.separator_style, "solid" ) == 0 ) {
const char *const str = "#window.mainbox.listview box { border: 2px solid 0px 0px 0px; }";
rofi_theme_parse_string ( str );
const char *const str2 = "#window.mainbox.sidebar box { border: 2px solid 0px 0px 0px; }";
rofi_theme_parse_string ( str2 );
+ const char *const str3 = "#window.mainbox.message box { border: 2px solid 0px 0px 0px; }";
+ rofi_theme_parse_string ( str3 );
} /* dash is default */
}
/* Line Margin */