summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@blame.services>2021-07-10 00:28:21 +0200
committerDave Davenport <qball@blame.services>2021-07-10 00:28:21 +0200
commitb7dfb423a16cb7a04b2784edb1d53416171bd5d0 (patch)
tree3d1a0e0f4a734a1ec1bccd346d2fb5b8a12ce26f
parent9f71c4f78db67d34c20b76211488ae2c971c829e (diff)
[Config] Small fix config dump fix.
-rw-r--r--lexer/theme-parser.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexer/theme-parser.y b/lexer/theme-parser.y
index 729101d9..ab9f4def 100644
--- a/lexer/theme-parser.y
+++ b/lexer/theme-parser.y
@@ -325,7 +325,7 @@ t_configuration_list:
%empty {
if ( rofi_configuration == NULL ) {
rofi_configuration = g_slice_new0 ( ThemeWidget );
- rofi_configuration->name = g_strdup ( "Configuration" );
+ rofi_configuration->name = g_strdup ( "Root" );
}
}
| t_configuration_list T_CONFIGURATION T_BOPEN t_config_property_list_optional T_BCLOSE {};