summaryrefslogtreecommitdiffstats
path: root/source/widgets
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-12-13 00:09:51 +0100
committerDave Davenport <qball@gmpclient.org>2016-12-13 00:09:51 +0100
commit38035568f375c701d49658adbe9c7d632d584b31 (patch)
tree61462ff62f804fe4744c2aaf66d0f62fa78fe6b1 /source/widgets
parentfd64bb7a41bf72ad19df772a2cae336ded484b87 (diff)
Fix separator class and tweak parser inheritance.
Diffstat (limited to 'source/widgets')
-rw-r--r--source/widgets/separator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/widgets/separator.c b/source/widgets/separator.c
index 295ba95f..c04cecec 100644
--- a/source/widgets/separator.c
+++ b/source/widgets/separator.c
@@ -88,7 +88,7 @@ separator *separator_create ( const char *name, separator_type type, short sw )
// Enabled by default
sb->widget.enabled = TRUE;
- const char *line_style = rofi_theme_get_string ( "@scrollbar", sb->widget.name, NULL, "line-style", "solid");
+ const char *line_style = rofi_theme_get_string ( "@separator", sb->widget.name, NULL, "line-style", "solid");
separator_set_line_style_from_string ( sb, line_style );
return sb;
}