summaryrefslogtreecommitdiffstats
path: root/source/dialogs
diff options
context:
space:
mode:
authorQuentin Glidic <sardemff7+git@sardemff7.net>2017-06-02 21:35:26 +0200
committerQuentin Glidic <sardemff7+git@sardemff7.net>2017-06-02 21:35:26 +0200
commitb0fe6d3c6a05973ab1763edfe9bf4bde4518ccc3 (patch)
tree7812085de9bfc757fe80276935c46d744b960055 /source/dialogs
parent76a6e312fe1d86c7a29e3839d1c0311e9c583c18 (diff)
drun: Actually use the icon theme setting
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
Diffstat (limited to 'source/dialogs')
-rw-r--r--source/dialogs/drun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/dialogs/drun.c b/source/dialogs/drun.c
index 5360356c..e7ec8f9e 100644
--- a/source/dialogs/drun.c
+++ b/source/dialogs/drun.c
@@ -447,7 +447,7 @@ static gpointer drun_icon_fetch ( gpointer data )
if ( dr->icon_name == NULL ) {
continue;
}
- gchar *icon_path = nk_xdg_theme_get_icon ( pd->xdg_context, NULL, "Applications", dr->icon_name, 32, 1, TRUE );
+ gchar *icon_path = nk_xdg_theme_get_icon ( pd->xdg_context, config.drun_icon_theme, "Applications", dr->icon_name, 32, 1, TRUE );
if ( icon_path == NULL ) {
g_free ( dr->icon_name );
dr->icon_name = NULL;