From cd529acd9a33fb138d68cbe9535e7a2cd75ea66c Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Tue, 20 Dec 2016 10:27:23 +0100 Subject: [PATCH] Fix typo in resolving theme element. --- source/theme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/theme.c b/source/theme.c index ef3cb1b8..f2492428 100644 --- a/source/theme.c +++ b/source/theme.c @@ -217,7 +217,7 @@ static Widget *rofi_theme_find_widget ( const char *wclass, const char *name, co } if ( widget == NULL ){ // Fuzzy finder - Widget *widget = rofi_theme_find ( rofi_theme, name, FALSE ); + widget = rofi_theme_find ( rofi_theme, name, FALSE ); if ( widget == rofi_theme ){ widget = rofi_theme_find ( widget, wclass, FALSE ); }