summaryrefslogtreecommitdiffstats
path: root/source/xrmoptions.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-03-20 10:16:55 +0100
committerDave Davenport <qball@gmpclient.org>2016-03-20 10:16:55 +0100
commitd36ae81408385bb4278ab3af2aad127d815f2421 (patch)
tree11dcbf7d28a654bda8ed1eec24e6614dbd33632b /source/xrmoptions.c
parenta2869ef39d1e78c70877df27dc9a6ebc66962842 (diff)
Fix positioning window on top of window.
Diffstat (limited to 'source/xrmoptions.c')
-rw-r--r--source/xrmoptions.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/xrmoptions.c b/source/xrmoptions.c
index 021f4198..41d40495 100644
--- a/source/xrmoptions.c
+++ b/source/xrmoptions.c
@@ -523,12 +523,12 @@ void config_parse_xresources_theme_dump ( void )
printf ( "! ROFI Color theme\n" );
printf ( "! User: %s\n", g_get_user_name () );
printf ( "! ------------------------------------------------------------------------------\n" );
- const char * const namePrefix = "rofi";
- const char colorPrefix[] = "color-";
- const char separatorStyle[] = "separator-style";
- unsigned int entries = sizeof ( xrmOptions ) / sizeof ( *xrmOptions );
+ const char * const namePrefix = "rofi";
+ const char colorPrefix[] = "color-";
+ const char separatorStyle[] = "separator-style";
+ unsigned int entries = sizeof ( xrmOptions ) / sizeof ( *xrmOptions );
for ( unsigned int i = 0; i < entries; ++i ) {
- if ( strncmp ( xrmOptions[i].name, colorPrefix, sizeof(colorPrefix)-1 ) == 0 ) {
+ if ( strncmp ( xrmOptions[i].name, colorPrefix, sizeof ( colorPrefix ) - 1 ) == 0 ) {
xresource_dump_entry ( namePrefix, &xrmOptions[i] );
}
else if ( strcmp ( xrmOptions[i].name, separatorStyle ) == 0 ) {